diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-12-15 16:26:27 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-12-15 17:49:28 -0500 |
commit | b5dd8148730db080b48b874c214f8f74ae787d6b (patch) | |
tree | 5b7c9092212f593076f95031142399cfa50eb78b /src/shared/time-util.c | |
parent | 2fd069b18e525860514a70d3ea08410ca122d3e2 (diff) |
Fix a few signed/unsigned format string issues
Since numbers involved are all small, behaviour was correct already.
https://bugzilla.redhat.com/show_bug.cgi?id=1043304
Diffstat (limited to 'src/shared/time-util.c')
-rw-r--r-- | src/shared/time-util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/time-util.c b/src/shared/time-util.c index 55428c4ced..678fd588b2 100644 --- a/src/shared/time-util.c +++ b/src/shared/time-util.c @@ -383,7 +383,7 @@ void dual_timestamp_deserialize(const char *value, dual_timestamp *t) { assert(value); assert(t); - if (sscanf(value, "%lli %llu", &a, &b) != 2) + if (sscanf(value, "%llu %llu", &a, &b) != 2) log_debug("Failed to parse finish timestamp value %s", value); else { t->realtime = a; |