From 88f692dac2f32f48044730e3ef7fa34a46a23241 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 26 Oct 2009 05:38:04 +0000 Subject: =?UTF-8?q?2009-10-26=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * support/include/tmacros.h (print_time): Use PRIu32 instead of %d. --- testsuites/ChangeLog | 4 ++++ testsuites/support/include/tmacros.h | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'testsuites') diff --git a/testsuites/ChangeLog b/testsuites/ChangeLog index b574d2d601..d07b6b1007 100644 --- a/testsuites/ChangeLog +++ b/testsuites/ChangeLog @@ -1,3 +1,7 @@ +2009-10-26 Ralf Corsépius + + * support/include/tmacros.h (print_time): Use PRIu32 instead of %d. + 2009-10-26 Ralf Corsépius * support/include/test_support.h: Add missing prototypes. diff --git a/testsuites/support/include/tmacros.h b/testsuites/support/include/tmacros.h index 5ce53cde09..384ee73d8e 100644 --- a/testsuites/support/include/tmacros.h +++ b/testsuites/support/include/tmacros.h @@ -168,7 +168,7 @@ extern volatile uint32_t _Thread_Dispatch_disable_level; #define print_time(_s1, _tb, _s2) \ do { \ - printf( "%s%02d:%02d:%02d %02d/%02d/%04d%s", \ + printf( "%s%02" PRIu32 ":%02" PRIu32 ":%02" PRIu32 " %02" PRIu32 "/%02" PRIu32 "/%04" PRIu32 "%s", \ _s1, (_tb)->hour, (_tb)->minute, (_tb)->second, \ (_tb)->month, (_tb)->day, (_tb)->year, _s2 ); \ } while ( 0 ) -- cgit v1.2.3