diff options
author | Matúš Kukan <matus.kukan@gmail.com> | 2012-01-05 17:32:21 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2012-01-05 17:32:21 +0100 |
commit | 8f823b7d39154d2044e08174a858f8ef357a151a (patch) | |
tree | 72a6fa650cfe300bb7c5bdf38f45ac2d019c5d55 /sal/qa/osl | |
parent | 3082565d6291176ef1fcdc053f9851c82a02d19a (diff) |
gcc-trunk: fix: unable to find string literal operator 'operator FOO'
Diffstat (limited to 'sal/qa/osl')
-rw-r--r-- | sal/qa/osl/mutex/osl_Mutex.cxx | 2 |
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(); |