]> git.karo-electronics.de Git - karo-tx-linux.git/commit
turbostat: Don't attempt to printf an off_t with %zx
authorJosh Triplett <josh@joshtriplett.org>
Wed, 21 Aug 2013 00:20:13 +0000 (17:20 -0700)
committerLen Brown <len.brown@intel.com>
Sun, 19 Jan 2014 03:34:08 +0000 (22:34 -0500)
commit2e9c6bc7fb6ffc32d83bc133e4a7389125e8eb0a
treeca9487a0ffc85dcea608cc4d15e72b1c27756e19
parentb731f3119de57144e16c19fd593b8daeb637843e
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>
tools/power/x86/turbostat/turbostat.c