summaryrefslogtreecommitdiffstats
path: root/libmount/src/cache.c
diff options
context:
space:
mode:
authorKarel Zak2011-08-02 11:21:16 +0200
committerKarel Zak2011-08-02 11:21:16 +0200
commit7fc6d2b8f8f55f38f069414706bac59c20dd4d24 (patch)
treeed281faa7deef7ef6d5d06dcb545527009918725 /libmount/src/cache.c
parentchrt: [selinux] fix compiler warnings [-Wsign-compare] (diff)
downloadkernel-qcow2-util-linux-7fc6d2b8f8f55f38f069414706bac59c20dd4d24.tar.gz
kernel-qcow2-util-linux-7fc6d2b8f8f55f38f069414706bac59c20dd4d24.tar.xz
kernel-qcow2-util-linux-7fc6d2b8f8f55f38f069414706bac59c20dd4d24.zip
libmount: fix compiler warnings [-Wunused-parameter -Wsign-compare]
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libmount/src/cache.c')
-rw-r--r--libmount/src/cache.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/libmount/src/cache.c b/libmount/src/cache.c
index ecd71697c..802d072ee 100644
--- a/libmount/src/cache.c
+++ b/libmount/src/cache.c
@@ -86,7 +86,7 @@ struct libmnt_cache *mnt_new_cache(void)
*/
void mnt_free_cache(struct libmnt_cache *cache)
{
- int i;
+ size_t i;
if (!cache)
return;
@@ -181,7 +181,7 @@ static int cache_add_tag(struct libmnt_cache *cache, const char *tagname,
*/
static const char *cache_find_path(struct libmnt_cache *cache, const char *path)
{
- int i;
+ size_t i;
assert(cache);
assert(path);
@@ -205,7 +205,7 @@ static const char *cache_find_path(struct libmnt_cache *cache, const char *path)
static const char *cache_find_tag(struct libmnt_cache *cache,
const char *token, const char *value)
{
- int i;
+ size_t i;
size_t tksz;
assert(cache);
@@ -231,7 +231,7 @@ static const char *cache_find_tag(struct libmnt_cache *cache,
static char *cache_find_tag_value(struct libmnt_cache *cache,
const char *devname, const char *token)
{
- int i;
+ size_t i;
assert(cache);
assert(devname);
@@ -297,7 +297,8 @@ static int cache_get_probe(struct libmnt_cache *cache, const char *devname,
*/
int mnt_cache_read_tags(struct libmnt_cache *cache, const char *devname)
{
- int i, ntags = 0, rc;
+ size_t i, ntags = 0;
+ int rc;
const char *tags[] = { "LABEL", "UUID", "TYPE" };
assert(cache);
@@ -355,7 +356,7 @@ int mnt_cache_read_tags(struct libmnt_cache *cache, const char *devname)
ntags++;
}
- DBG(CACHE, mnt_debug_h(cache, "\tread %d tags", ntags));
+ DBG(CACHE, mnt_debug_h(cache, "\tread %zd tags", ntags));
return ntags ? 0 : 1;
error:
return -1;