diff options
author | Lennart Poettering <lennart@poettering.net> | 2011-12-31 03:35:45 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2011-12-31 03:35:45 +0100 |
commit | c0f99c21f4d5ccbdedf5f648258ae3483566c847 (patch) | |
tree | f7022f54a2d237c69bcceddc48434de888a31066 /src/util.c | |
parent | e81e801af69f11cc13ed1952b48ce8b0cd066559 (diff) |
util: fix warning
Diffstat (limited to 'src/util.c')
-rw-r--r-- | src/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c index 0d1d16d9ac..de36d1595e 100644 --- a/src/util.c +++ b/src/util.c @@ -5942,7 +5942,7 @@ unsigned long cap_last_cap(void) { } char *format_bytes(char *buf, size_t l, off_t t) { - int i; + unsigned i; static const struct { const char *suffix; |