diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/log.c b/server/log.c index 6b11209..0afc4ba 100644 --- a/server/log.c +++ b/server/log.c @@ -31,7 +31,7 @@ log_priority(int priority, const char *fmt, va_list args) #endif (void)snprintf(lbuff, sizeof(lbuff), - "[tid: %d] %s", (int)pthread_self(), fmt); + "[tid: %llu] %s", (uint64_t)pthread_self(), fmt); vsyslog(priority, lbuff, args); #if 0 |