diff options
author | Karel Zak <kzak@redhat.com> | 2012-07-26 09:44:37 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2012-07-26 09:44:37 +0200 |
commit | 3d660e74fc2641523f5c9f92adf26286c831cae7 (patch) | |
tree | db0f345bcfe56fa5cf6e8396f0cea5c7b0420528 /libmount/src/cache.c | |
parent | bd2d882209f816d07ed03e19e9e8dc13a9832071 (diff) | |
download | util-linux-3d660e74fc2641523f5c9f92adf26286c831cae7.tar.gz |
libmount: fix compiler warning [-Wsign-compare]
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libmount/src/cache.c')
-rw-r--r-- | libmount/src/cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmount/src/cache.c b/libmount/src/cache.c index 220a1465..34419cb6 100644 --- a/libmount/src/cache.c +++ b/libmount/src/cache.c @@ -633,7 +633,7 @@ int test_read_tags(struct libmnt_test *ts, int argc, char *argv[]) { char line[BUFSIZ]; struct libmnt_cache *cache; - int i; + size_t i; cache = mnt_new_cache(); if (!cache) |