diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-06-19 04:35:52 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-06-19 04:35:52 +0200 |
commit | bb00e604097fba830af1dc078d78aff278dfcd37 (patch) | |
tree | 01cda212012b5159e073eede2d27a93cafa0f647 /src/main.c | |
parent | 6cf6bbc2682c6df010d64ea7e49d93affa7282cd (diff) |
don't use 'long long' unless we have a really good reason to
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c index f00d43a7c5..db2a767818 100644 --- a/src/main.c +++ b/src/main.c @@ -116,7 +116,7 @@ _noreturn_ static void crash(int sig) { else if (!WCOREDUMP(status)) log_error("Caught <%s>, core dump failed.", strsignal(sig)); else - log_error("Caught <%s>, dumped core as pid %llu.", strsignal(sig), (unsigned long long) pid); + log_error("Caught <%s>, dumped core as pid %lu.", strsignal(sig), (unsigned long) pid); } } @@ -152,7 +152,7 @@ _noreturn_ static void crash(int sig) { _exit(1); } - log_info("Successfully spawned crash shall as pid %llu.", (unsigned long long) pid); + log_info("Successfully spawned crash shall as pid %lu.", (unsigned long) pid); } log_info("Freezing execution."); |