diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-09-21 09:15:34 +0300 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2012-09-21 10:55:37 +0300 |
commit | 7b72d933f99613a0ff2105416c26c3c5baa7888c (patch) | |
tree | f0c0a9acbdc5a9e4b94f529c9af0f2fefae36656 /bridges | |
parent | 43351998e7b39dae3021943d76ff27bdf21e53cf (diff) |
WaE: format '%lx' expects 'long unsigned int', argument is 'void*'
Change-Id: Id14a7be627502cb8aa2173f0206c84cd27fab2e6
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx b/bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx index 98b29bac0efb..17d6f05ea007 100644 --- a/bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx +++ b/bridges/source/cpp_uno/gcc3_linux_arm/uno2cpp.cxx @@ -468,7 +468,7 @@ static void cpp_call( case typelib_TypeClass_HYPER: case typelib_TypeClass_UNSIGNED_HYPER: #if OSL_DEBUG_LEVEL > 2 - fprintf(stderr, "hyper is %lx\n", pCppArgs[nPos]); + fprintf(stderr, "hyper is %p\n", pCppArgs[nPos]); #endif INSERT_INT64( pCppArgs[nPos], nGPR, pGPR, pStack, pStackStart ); break; @@ -476,7 +476,7 @@ static void cpp_call( case typelib_TypeClass_UNSIGNED_LONG: case typelib_TypeClass_ENUM: #if OSL_DEBUG_LEVEL > 2 - fprintf(stderr, "long is %x\n", pCppArgs[nPos]); + fprintf(stderr, "long is %p\n", pCppArgs[nPos]); #endif INSERT_INT32( pCppArgs[nPos], nGPR, pGPR, pStack ); break; |