From 2d743ac8f15977fd936c78574c54227fc9fed3b9 Mon Sep 17 00:00:00 2001 From: Günther Deschner Date: Thu, 9 Feb 2006 10:17:38 +0000 Subject: r13409: No functional changes, just some DEBUG cleanup. Guenther (This used to be commit 286f6fc2339cf4ef232c16466b8dffdcddbe343f) --- source3/lib/events.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib') diff --git a/source3/lib/events.c b/source3/lib/events.c index 314f074979..3670d960aa 100644 --- a/source3/lib/events.c +++ b/source3/lib/events.c @@ -84,7 +84,7 @@ void run_events(void) if (timed_events == NULL) { /* No syscall if there are no events */ - DEBUG(10, ("run_events: No events\n")); + DEBUG(11, ("run_events: No events\n")); return; } @@ -92,7 +92,7 @@ void run_events(void) if (timeval_compare(&now, &timed_events->when) < 0) { /* Nothing to do yet */ - DEBUG(10, ("run_events: Nothing to do\n")); + DEBUG(11, ("run_events: Nothing to do\n")); return; } -- cgit