]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/log.c
Code cleanup, remove blank lines
[ngircd-alex.git] / src / ngircd / log.c
index e5bed7912f28401ab93884ee5e84ad4c0c5f7465..32cf6cfd60b3da5783d481328c83c61d081d9de3 100644 (file)
@@ -43,7 +43,6 @@
 #include "exp.h"
 #include "log.h"
 
-
 static bool Is_Daemon;
 
 
@@ -53,7 +52,7 @@ Log_Message(int Level, const char *msg)
        if (!Is_Daemon) {
                /* log to console */
                fprintf(stdout, "[%ld:%d %4ld] %s\n", (long)getpid(), Level,
-                               (long)time(NULL) - NGIRCd_Start, msg);
+                               (long)(time(NULL) - NGIRCd_Start), msg);
                fflush(stdout);
        }
 #ifdef SYSLOG
@@ -160,7 +159,7 @@ va_dcl
  * suitable for the mode ngIRCd is running in (daemon vs. non-daemon).
  * If LOG_snotice is set, the log messages goes to all user with the mode +s
  * set and the local &SERVER channel, too.
- * Please note: you sould use LogDebug(...) for debug messages!
+ * Please note: you should use LogDebug(...) for debug messages!
  * @param Level syslog level (LOG_xxx)
  * @param Format Format string like printf().
  * @param ... Further arguments.