diff options
author | Josh Triplett <josh@joshtriplett.org> | 2013-08-20 20:20:13 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2014-01-18 22:34:08 -0500 |
commit | 2e9c6bc7fb6ffc32d83bc133e4a7389125e8eb0a (patch) | |
tree | ca9487a0ffc85dcea608cc4d15e72b1c27756e19 /tools | |
parent | b731f3119de57144e16c19fd593b8daeb637843e (diff) |
turbostat: Don't attempt to printf an off_t with %zx
turbostat uses the format %zx to print an off_t. However, %zx wants a
size_t, not an off_t. On 32-bit targets, those refer to different
types, potentially even with different sizes. Use %llx and a cast
instead, since printf does not have a length modifier for off_t.
Without this patch, when compiling for a 32-bit target:
turbostat.c: In function 'get_msr':
turbostat.c:231:3: warning: format '%zx' expects argument of type 'size_t', but argument 4 has type 'off_t' [-Wformat]
Signed-off-by: Josh Triplett <josh@joshtriplett.org>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/power/x86/turbostat/turbostat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/power/x86/turbostat/turbostat.c b/tools/power/x86/turbostat/turbostat.c index 93cbef56e876..dbcbf27a4d8b 100644 --- a/tools/power/x86/turbostat/turbostat.c +++ b/tools/power/x86/turbostat/turbostat.c | |||
@@ -234,7 +234,7 @@ int get_msr(int cpu, off_t offset, unsigned long long *msr) | |||
234 | close(fd); | 234 | close(fd); |
235 | 235 | ||
236 | if (retval != sizeof *msr) { | 236 | if (retval != sizeof *msr) { |
237 | fprintf(stderr, "%s offset 0x%zx read failed\n", pathname, offset); | 237 | fprintf(stderr, "%s offset 0x%llx read failed\n", pathname, (unsigned long long)offset); |
238 | return -1; | 238 | return -1; |
239 | } | 239 | } |
240 | 240 | ||