diff options
author | Kay Sievers <kay@vrfy.org> | 2012-06-04 22:27:39 +0200 |
---|---|---|
committer | Kay Sievers <kay@vrfy.org> | 2012-06-04 22:27:39 +0200 |
commit | f96096dbbf0cc7335babf0386b8888431cd70728 (patch) | |
tree | 961a26f1222fc891557a4dbe217229a3ded8c0c5 /src/core | |
parent | 2d1972857b7bd19b4a74a8f80865749a8082f32a (diff) |
silence gcc warning on 32 bit
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/execute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/execute.c b/src/core/execute.c index 1b56f6b5f4..bbc430e055 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -1728,7 +1728,7 @@ void exec_context_dump(ExecContext *c, FILE* f, const char *prefix) { } if (c->timer_slack_nsec != (nsec_t) -1) - fprintf(f, "%sTimerSlackNSec: %lu\n", prefix, c->timer_slack_nsec); + fprintf(f, "%sTimerSlackNSec: %lu\n", prefix, (unsigned long)c->timer_slack_nsec); fprintf(f, "%sStandardInput: %s\n" |