diff options
author | sb <sb@openoffice.org> | 2010-09-23 16:35:55 +0200 |
---|---|---|
committer | sb <sb@openoffice.org> | 2010-09-23 16:35:55 +0200 |
commit | c3c0ef6831829a1fc7ca4fdb296f62a3ff686012 (patch) | |
tree | 0319da5f6351412403ded298cb439e7b332fd877 /sal/systools | |
parent | b0de0354848e0db374a7ff04da56ee223059e678 (diff) |
sb132: #i113211# correctly pass char* to %s
Diffstat (limited to 'sal/systools')
-rw-r--r-- | sal/systools/win32/kill/kill.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sal/systools/win32/kill/kill.cxx b/sal/systools/win32/kill/kill.cxx index dd7ae85a0af2..ec1379ccfa6b 100644 --- a/sal/systools/win32/kill/kill.cxx +++ b/sal/systools/win32/kill/kill.cxx @@ -272,7 +272,7 @@ static void ParseCommandArgs( LPDWORD lpProcesses, LPDWORD lpdwNumProcesses, int { for ( int n = 0; n < NumSupportedSignals; n++ ) { - _tprintf( _T("%s "), SupportedSignals[n] ); + _tprintf( _T("%s "), SupportedSignals[n].lpSignalName ); } _tprintf( _T("\n") ); ExitProcess( 0 ); |