diff options
author | Caolán McNamara <caolanm@redhat.com> | 2012-02-15 14:33:37 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2012-02-15 15:11:29 +0000 |
commit | 11e384b8a1d1716b98c870c356d919f4f68a08f5 (patch) | |
tree | 5c15b3cb087a1629bcce78fb5800deb5eb24ec72 /svx/source | |
parent | d1f45bd66f0efe6909acdb573aecb677ae388f74 (diff) |
WaE: these are integers, not pointers
Diffstat (limited to 'svx/source')
-rw-r--r-- | svx/source/dialog/sendreportw32.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/dialog/sendreportw32.cxx b/svx/source/dialog/sendreportw32.cxx index 514fd46bc02c..129e7cbd3cf0 100644 --- a/svx/source/dialog/sendreportw32.cxx +++ b/svx/source/dialog/sendreportw32.cxx @@ -77,7 +77,7 @@ static LONG RegWriteValue( HKEY hBaseKey, LPCTSTR lpSubKey, LPCTSTR lpValueName, if ( ERROR_SUCCESS == lResult ) { - lResult = RegSetValueEx( hKey, lpValueName, NULL, dwType, (CONST sal_uInt8 *)lpData, cbData ); + lResult = RegSetValueEx( hKey, lpValueName, 0, dwType, (CONST sal_uInt8 *)lpData, cbData ); RegCloseKey( hKey ); } |