diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-09-11 18:19:30 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-09-11 18:20:19 +0200 |
commit | f34fe6ed9f5a63745821770fd925776c54c8b905 (patch) | |
tree | c90ef3f3aec0450fa3c18730dea816d1cded104e /sal | |
parent | 59a4b78bbe4a1aa1ef225adbc5cf3570a4de9b5e (diff) |
-Werror,-Wformat
Change-Id: I24a060d1d5592a23f9a991ef3b39f31818ea0d84
Diffstat (limited to 'sal')
-rw-r--r-- | sal/qa/rtl/process/rtl_Process.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/qa/rtl/process/rtl_Process.cxx b/sal/qa/rtl/process/rtl_Process.cxx index fdc9f1998757..4a093bd441b2 100644 --- a/sal/qa/rtl/process/rtl_Process.cxx +++ b/sal/qa/rtl/process/rtl_Process.cxx @@ -142,7 +142,7 @@ public: osl_Process_E_None == osl_error ); - printf("the exit code is %d.\n", pInfo->Code ); + printf("the exit code is %" SAL_PRIuUINT32 ".\n", pInfo->Code ); CPPUNIT_ASSERT_MESSAGE("rtl_getAppCommandArg or rtl_getAppCommandArgCount error.", pInfo->Code == 2); delete pInfo; } |