summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2012-01-05 17:32:21 +0100
committerMichael Stahl <mstahl@redhat.com>2012-05-18 16:37:56 +0200
commitf7ff6d2f3e37d9f18e5ea99dd1985b3001cc499f (patch)
tree27a8b00417b1d2999c052de51aa15be428c1c9e1 /sal
parentfa3a3ba3e9c005a2ae550d8b19d3ff706a788d6d (diff)
gcc-trunk: fix: unable to find string literal operator 'operator FOO'
(cherry picked from commit 8f823b7d39154d2044e08174a858f8ef357a151a) Signed-off-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'sal')
-rw-r--r--sal/qa/osl/mutex/osl_Mutex.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/qa/osl/mutex/osl_Mutex.cxx b/sal/qa/osl/mutex/osl_Mutex.cxx
index 10a95c1ceca9..f4f34d6e0c7b 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();