diff options
author | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-10-25 03:31:33 +0000 |
---|---|---|
committer | trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b <trystan trystan@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-10-25 03:31:33 +0000 |
commit | 8ca85197f76ffebcb0d5341b1120b3dcfecfd2d1 (patch) | |
tree | 0a34b2f3d88809806d94ac6901d8c77be4479c26 /src/log.c | |
parent | 593b0d1799bc40a09230b904c88d22c1fe5f860e (diff) |
BUILD : 1.7.5 (423) BUGS : N/A NOTES : code tidy up fixes stuff under Freebsd
git-svn-id: svn://svn.anope.org/anope/trunk@423 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@281 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/log.c')
-rw-r--r-- | src/log.c | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -139,7 +139,8 @@ void alog(const char *fmt, ...) gettimeofday(&tv, NULL); strftime(buf, sizeof(buf) - 1, "[%b %d %H:%M:%S", &tm); s = buf + strlen(buf); - s += snprintf(s, sizeof(buf) - (s - buf), ".%06d", tv.tv_usec); + s += snprintf(s, sizeof(buf) - (s - buf), ".%06d", + (int) tv.tv_usec); strftime(s, sizeof(buf) - (s - buf) - 1, " %Y] ", &tm); } else { #endif @@ -197,7 +198,8 @@ void log_perror(const char *fmt, ...) gettimeofday(&tv, NULL); strftime(buf, sizeof(buf) - 1, "[%b %d %H:%M:%S", &tm); s = buf + strlen(buf); - s += snprintf(s, sizeof(buf) - (s - buf), ".%06d", tv.tv_usec); + s += snprintf(s, sizeof(buf) - (s - buf), ".%06d", + (int) tv.tv_usec); strftime(s, sizeof(buf) - (s - buf) - 1, " %Y] ", &tm); } else { #endif @@ -244,7 +246,8 @@ void fatal(const char *fmt, ...) gettimeofday(&tv, NULL); strftime(buf, sizeof(buf) - 1, "[%b %d %H:%M:%S", &tm); s = buf + strlen(buf); - s += snprintf(s, sizeof(buf) - (s - buf), ".%06d", tv.tv_usec); + s += snprintf(s, sizeof(buf) - (s - buf), ".%06d", + (int) tv.tv_usec); strftime(s, sizeof(buf) - (s - buf) - 1, " %Y] ", &tm); } else { #endif @@ -287,7 +290,8 @@ void fatal_perror(const char *fmt, ...) gettimeofday(&tv, NULL); strftime(buf, sizeof(buf) - 1, "[%b %d %H:%M:%S", &tm); s = buf + strlen(buf); - s += snprintf(s, sizeof(buf) - (s - buf), ".%06d", tv.tv_usec); + s += snprintf(s, sizeof(buf) - (s - buf), ".%06d", + (int) tv.tv_usec); strftime(s, sizeof(buf) - (s - buf) - 1, " %Y] ", &tm); } else { #endif |