[Libreoffice-commits] .: sal/qa
Matus Kukan
mkukan at kemper.freedesktop.org
Thu Jan 5 08:32:35 PST 2012
sal/qa/osl/mutex/osl_Mutex.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 8f823b7d39154d2044e08174a858f8ef357a151a
Author: Matúš Kukan <matus.kukan at gmail.com>
Date: Thu Jan 5 17:32:21 2012 +0100
gcc-trunk: fix: unable to find string literal operator 'operator FOO'
diff --git a/sal/qa/osl/mutex/osl_Mutex.cxx b/sal/qa/osl/mutex/osl_Mutex.cxx
index 10a95c1..f4f34d6 100644
--- a/sal/qa/osl/mutex/osl_Mutex.cxx
+++ b/sal/qa/osl/mutex/osl_Mutex.cxx
@@ -754,7 +754,7 @@ namespace osl_ClearableGuard
TimeValue aTimeVal_after;
osl_getSystemTime( &aTimeVal_after );
sal_Int32 nSec = aTimeVal_after.Seconds - aTimeVal_befor.Seconds;
- printf("nSec is %"SAL_PRIdINT32"\n", nSec);
+ printf("nSec is %" SAL_PRIdINT32 "\n", nSec);
myThread.join();
More information about the Libreoffice-commits
mailing list