From: Cerion Armour-Brown Date: Tue, 9 Aug 2005 22:34:18 +0000 (+0000) Subject: fixed endianness bug for ppc xml output X-Git-Tag: svn/VALGRIND_3_1_0~644 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=429d94fc43043cb393ecd01c14ba317d312fb923;p=thirdparty%2Fvalgrind.git fixed endianness bug for ppc xml output git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4358 --- diff --git a/coregrind/m_errormgr.c b/coregrind/m_errormgr.c index 1e31ef2c5a..c41d03dff2 100644 --- a/coregrind/m_errormgr.c +++ b/coregrind/m_errormgr.c @@ -802,7 +802,7 @@ void VG_(show_error_counts_as_XML) ( void ) VG_(message)( Vg_UserMsg, " \n" " %d\n" - " 0x%llx\n" + " 0x%x\n" " ", err->count, err->unique );