summaryrefslogtreecommitdiff
path: root/utils/storeinfo.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-05-28 23:56:27 +0000
committerRoland McGrath <roland@gnu.org>2002-05-28 23:56:27 +0000
commit5cd8d4c8112c82457677bcf7eb92ab2cddad930d (patch)
treececb8d82478cc57fe6c8e11182739e3aff8b3d81 /utils/storeinfo.c
parentdd411f04f3fbd85d6ed29d79b9b8da8343ba31a6 (diff)
2002-05-28 Roland McGrath <roland@frob.com>
* storeinfo.c (print_store): Use %z format.
Diffstat (limited to 'utils/storeinfo.c')
-rw-r--r--utils/storeinfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/storeinfo.c b/utils/storeinfo.c
index d355ca27..411bf11a 100644
--- a/utils/storeinfo.c
+++ b/utils/storeinfo.c
@@ -1,6 +1,6 @@
/* Show where a file exists
- Copyright (C) 1995,96,97,98,99,2001 Free Software Foundation, Inc.
+ Copyright (C) 1995,96,97,98,99,2001,02 Free Software Foundation, Inc.
Written by Miles Bader <miles@gnu.org>
@@ -104,7 +104,7 @@ print_store (struct store *store, int level, unsigned what)
if ((what & mask) == mask)
{
psep ();
- printf ("%u", val);
+ printf ("%zu", val);
}
}
void poff (store_offset_t val, unsigned mask)