diff options
author | Michael Stahl <mst@openoffice.org> | 2010-04-23 18:06:44 +0200 |
---|---|---|
committer | Michael Stahl <mst@openoffice.org> | 2010-04-23 18:06:44 +0200 |
commit | 9787713cac2f60f1567758701c74d059c6b17f15 (patch) | |
tree | e881ef489547f3d649648d61b2c921e3f0d3dd3d /rsc | |
parent | e37041ee819fc4e3b0734faee187fdfb972dad37 (diff) |
gnumake2: rscdb.cxx: fix format string
Diffstat (limited to 'rsc')
-rw-r--r-- | rsc/source/parser/rscdb.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rsc/source/parser/rscdb.cxx b/rsc/source/parser/rscdb.cxx index d003b9a1f321..70364f5acbeb 100644 --- a/rsc/source/parser/rscdb.cxx +++ b/rsc/source/parser/rscdb.cxx @@ -125,7 +125,7 @@ static sal_uInt32 getLangIdAndShortenLocale( RscTypCont* pTypCont, else rLang = rtl::OString(); #if OSL_DEBUG_LEVEL > 1 - fprintf( stderr, " %s (0x%hx)", aL.getStr(), nRet ); + fprintf( stderr, " %s (0x%" SAL_PRIxUINT32 ")", aL.getStr(), nRet ); #endif return nRet; } |