diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-01-24 10:19:42 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-01-24 10:21:13 +0100 |
commit | 04b8bac4a9e8e251ca61c4373beb0f1df76b2d54 (patch) | |
tree | 4afb026cd621541c8c7aa17a2410bedba338a09a /sal | |
parent | 6b58e58dc71f5371829e54fdddd5ca1b69c80aff (diff) |
finalize gcc 4.7 string literal operators
Diffstat (limited to 'sal')
-rw-r--r-- | sal/qa/osl/socket/osl_Socket.cxx | 4 | ||||
-rw-r--r-- | sal/qa/osl/socket/osl_Socket2.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sal/qa/osl/socket/osl_Socket.cxx b/sal/qa/osl/socket/osl_Socket.cxx index 967c1fc14786..1c3b2125e2db 100644 --- a/sal/qa/osl/socket/osl_Socket.cxx +++ b/sal/qa/osl/socket/osl_Socket.cxx @@ -2470,7 +2470,7 @@ namespace osl_Socket // on Linux, the value of option is 1, on Solaris, it's 16, but it's not important the exact value, // just judge it is zero or not! sal_Bool bOK = ( 0 != *pGetBuffer ); - t_print("#setOption_001: getOption is %"SAL_PRIdINT32" \n", *pGetBuffer); + t_print("#setOption_001: getOption is %" SAL_PRIdINT32 " \n", *pGetBuffer); // toggle check, set to 0 *pbDontRouteSet = 0; @@ -2482,7 +2482,7 @@ namespace osl_Socket sal_Bool bOK2 = ( 0 == *pGetBuffer ); - t_print("#setOption_001: getOption is %"SAL_PRIdINT32" \n", *pGetBuffer); + t_print("#setOption_001: getOption is %" SAL_PRIdINT32 " \n", *pGetBuffer); // LLA: sal_Bool * pbDontTouteSet = ( sal_Bool * )malloc( sizeof ( sal_Bool ) ); // LLA: *pbDontTouteSet = sal_True; diff --git a/sal/qa/osl/socket/osl_Socket2.cxx b/sal/qa/osl/socket/osl_Socket2.cxx index 10e1c4b5ecdf..ba2c1d6294fc 100644 --- a/sal/qa/osl/socket/osl_Socket2.cxx +++ b/sal/qa/osl/socket/osl_Socket2.cxx @@ -1107,7 +1107,7 @@ namespace osl_Socket // on Linux, the value of option is 1, on Solaris, it's 16, but it's not important the exact value, // just judge it is zero or not! sal_Bool bOK = ( 0 != *pGetBuffer ); - t_print("#setOption_001: getOption is %"SAL_PRIdINT32" \n", *pGetBuffer); + t_print("#setOption_001: getOption is %" SAL_PRIdINT32 " \n", *pGetBuffer); // toggle check, set to 0 *pbDontRouteSet = 0; @@ -1119,7 +1119,7 @@ namespace osl_Socket sal_Bool bOK2 = ( 0 == *pGetBuffer ); - t_print("#setOption_001: getOption is %"SAL_PRIdINT32" \n", *pGetBuffer); + t_print("#setOption_001: getOption is %" SAL_PRIdINT32 " \n", *pGetBuffer); // LLA: sal_Bool * pbDontTouteSet = ( sal_Bool * )malloc( sizeof ( sal_Bool ) ); // LLA: *pbDontTouteSet = sal_True; |