On 05/01/2012 07:35 PM, Frank Rowand wrote: > > Fix printf format string to allow for 32 bit and 64 bit word size. > > Signed-off-by: Frank Rowand <frank.rowand@xxxxxxxxxxx> Tested cross-compilation for ARM, no warnings for this section. Tested-by: Darren Hart <dvhart@xxxxxxxxxxxxxxx> > --- > src/cyclictest/cyclictest.c | 3 2 + 1 - 0 ! > 1 file changed, 2 insertions(+), 1 deletion(-) > > Index: b/src/cyclictest/cyclictest.c > =================================================================== > --- a/src/cyclictest/cyclictest.c > +++ b/src/cyclictest/cyclictest.c > @@ -24,6 +24,7 @@ > #include <time.h> > #include <errno.h> > #include <limits.h> > +#include <inttypes.h> > #include <linux/unistd.h> > > #include <sys/prctl.h> > @@ -1575,7 +1576,7 @@ int main(int argc, char **argv) > print_tids(parameters, num_threads); > if (break_thread_id) { > printf("# Break thread: %d\n", break_thread_id); > - printf("# Break value: %lu\n", break_thread_value); > + printf("# Break value: %" PRIu64 "\n", break_thread_value); > } > } > > -- Darren Hart Intel Open Source Technology Center Yocto Project - Linux Kernel -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html