diff options
author | Roy Marples <roy@marples.name> | 2009-04-24 06:37:29 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2009-04-24 06:37:29 +0000 |
commit | e643a7fdd5726644a5d195e91ba23e9687a4407d (patch) | |
tree | e5927f7034d56985d88b960dbecb30f3a005b778 /src/rc/runscript.c | |
parent | ade85d4bd81d7257f5a7e2e4ed40b9cbbbe23651 (diff) |
Describe interval units
Diffstat (limited to 'src/rc/runscript.c')
-rw-r--r-- | src/rc/runscript.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rc/runscript.c b/src/rc/runscript.c index b0fb9aa2..a9f75a95 100644 --- a/src/rc/runscript.c +++ b/src/rc/runscript.c @@ -520,8 +520,8 @@ svc_wait(const char *svc) return false; timespecsub(&warn, &interval, &warn); if (warn.tv_sec <= 0) { - ewarn("%s: waiting for %s (%zu)", applet, svc, - timeout.tv_sec); + ewarn("%s: waiting for %s (%zu seconds)", + applet, svc, timeout.tv_sec); warn.tv_sec = WARN_TIMEOUT; warn.tv_nsec = 0; } |