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/initctl.c | |
parent | 6cf6bbc2682c6df010d64ea7e49d93affa7282cd (diff) |
don't use 'long long' unless we have a really good reason to
Diffstat (limited to 'src/initctl.c')
-rw-r--r-- | src/initctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/initctl.c b/src/initctl.c index fef45007ba..def621d220 100644 --- a/src/initctl.c +++ b/src/initctl.c @@ -339,7 +339,7 @@ int main(int argc, char *argv[]) { log_set_target(LOG_TARGET_SYSLOG_OR_KMSG); log_parse_environment(); - log_info("systemd-initctl running as pid %llu", (unsigned long long) getpid()); + log_info("systemd-initctl running as pid %lu", (unsigned long) getpid()); if ((n = sd_listen_fds(true)) < 0) { log_error("Failed to read listening file descriptors from environment: %s", strerror(-r)); @@ -387,7 +387,7 @@ fail: server_done(&server); - log_info("systemd-initctl stopped as pid %llu", (unsigned long long) getpid()); + log_info("systemd-initctl stopped as pid %lu", (unsigned long) getpid()); dbus_shutdown(); |