diff options
author | Marcus Brinkmann <[email protected]> | 2011-06-01 19:43:30 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2011-06-01 19:43:30 +0000 |
commit | 1c684df5b89bee6a67e07e0733c5a65198a3afe5 (patch) | |
tree | b4ab80ccb36ced3f029b415b39f9d1383b59207f /g13/mountinfo.c | |
parent | po (diff) | |
download | gnupg-1c684df5b89bee6a67e07e0733c5a65198a3afe5.tar.gz gnupg-1c684df5b89bee6a67e07e0733c5a65198a3afe5.zip |
Fix size_t vs int issues.
Diffstat (limited to 'g13/mountinfo.c')
-rw-r--r-- | g13/mountinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g13/mountinfo.c b/g13/mountinfo.c index 90b205ed5..be83de712 100644 --- a/g13/mountinfo.c +++ b/g13/mountinfo.c @@ -193,6 +193,6 @@ mountinfo_dump_all (void) for (idx=0, m = mounttable; idx < mounttable_size; idx++, m++) if (m->in_use) log_info ("mtab[%d] %s on %s type %d rid %u%s\n", - idx, m->container, m->mountpoint, m->conttype, m->rid, + (int)idx, m->container, m->mountpoint, m->conttype, m->rid, m->flags.remove?" [remove]":""); } |