mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Fix size_t vs int issues.
This commit is contained in:
parent
9cb6557121
commit
1c684df5b8
12 changed files with 36 additions and 13 deletions
|
@ -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]":"");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue