From b1daa815bd09eadfe546daf7fdf54fda17413a15 Mon Sep 17 00:00:00 2001 From: Valery V Yatsko Date: Sun, 17 Aug 2008 09:33:05 +0400 Subject: [PATCH] fixed warnings on src/ircd.c compilation --- src/ircd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ircd.c b/src/ircd.c index 30367782..1f892279 100644 --- a/src/ircd.c +++ b/src/ircd.c @@ -453,7 +453,7 @@ ircd_log_cb(const char *str) static void ircd_restart_cb(const char *str) { - inotice(L_MAIN, "libratbox has called the restart callback: %s", str); + inotice("libratbox has called the restart callback: %s", str); restart(str); } @@ -474,7 +474,7 @@ ircd_die_cb(const char *str) inotice("libratbox has called the die callback..aborting: %s", str); } else - inotice(L_MAIN, "libratbox has called the die callback..aborting"); + inotice("libratbox has called the die callback..aborting"); unlink(pidFileName); exit(EXIT_FAILURE);