diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-02-03 19:31:53 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2014-02-05 19:00:36 -0500 |
commit | 90b2de37b80603168f4e9c9c81cff7eea4efa21a (patch) | |
tree | c94767aff1f78fe52fc33ba697d265dcccb4786c /src/shutdownd | |
parent | 284c0b917697fb0271381f331ffee28403278e72 (diff) |
Update some message formats
Use PID_FMT/USEC_FMT/... in more places.
Also update logind error messages to print the full path to a file that
failed. This should make debugging easier for people who do not know
off the top of their head where logind stores it state.
Diffstat (limited to 'src/shutdownd')
-rw-r--r-- | src/shutdownd/shutdownd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shutdownd/shutdownd.c b/src/shutdownd/shutdownd.c index 461a7261f4..4a1719849b 100644 --- a/src/shutdownd/shutdownd.c +++ b/src/shutdownd/shutdownd.c @@ -224,10 +224,10 @@ static int update_schedule_file(struct sd_shutdown_command *c) { fchmod(fileno(f), 0644); fprintf(f, - "USEC=%llu\n" + "USEC="USEC_FMT"\n" "WARN_WALL=%i\n" "MODE=%s\n", - (unsigned long long) c->usec, + c->usec, c->warn_wall, mode_to_string(c->mode)); |