X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Flog.c;h=4840185bc1cabb7896b163494c90211cd03e4649;hb=bb00e604097fba830af1dc078d78aff278dfcd37;hp=4f9f2da2592c5a99ad96eec34ba5d7b927afbbcb;hpb=6cf6bbc2682c6df010d64ea7e49d93affa7282cd;p=elogind.git diff --git a/src/log.c b/src/log.c index 4f9f2da25..4840185bc 100644 --- a/src/log.c +++ b/src/log.c @@ -265,7 +265,7 @@ static int write_to_syslog( if (strftime(header_time, sizeof(header_time), "%h %e %T ", tm) <= 0) return -EINVAL; - snprintf(header_pid, sizeof(header_pid), "[%llu]: ", (unsigned long long) getpid()); + snprintf(header_pid, sizeof(header_pid), "[%lu]: ", (unsigned long) getpid()); char_array_0(header_pid); zero(iovec); @@ -301,7 +301,7 @@ static int write_to_kmsg( snprintf(header_priority, sizeof(header_priority), "<%i>", LOG_PRI(level)); char_array_0(header_priority); - snprintf(header_pid, sizeof(header_pid), "[%llu]: ", (unsigned long long) getpid()); + snprintf(header_pid, sizeof(header_pid), "[%lu]: ", (unsigned long) getpid()); char_array_0(header_pid); zero(iovec);