diff options
author | Lionel Elie Mamane <lionel@mamane.lu> | 2012-12-05 06:05:58 +0100 |
---|---|---|
committer | Lionel Elie Mamane <lionel@mamane.lu> | 2012-12-06 19:20:13 +0100 |
commit | a62e53830c95eb3db5976232d3375add94749896 (patch) | |
tree | 02c4e5cf0164ffb97c95e5f00f58ae8c8f3930eb /connectivity | |
parent | 2dac905bd4cbb259e6821bb43714df5f30a2504d (diff) |
stylistic: use sal_Int8 rather than char for binary data
Change-Id: Ic3c7d8d2a27e1835513790523ddd3bdc8f7c2101
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/odbcbase/OTools.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/odbcbase/OTools.cxx b/connectivity/source/drivers/odbcbase/OTools.cxx index 7c2630ec57c8..853315286969 100644 --- a/connectivity/source/drivers/odbcbase/OTools.cxx +++ b/connectivity/source/drivers/odbcbase/OTools.cxx @@ -358,7 +358,7 @@ Sequence<sal_Int8> OTools::getBytesValue(const OConnection* _pConnection, const Reference< XInterface >& _xInterface) throw(SQLException, RuntimeException) { RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, "odbc", "Ocke.Janssen@sun.com", "OTools::getBytesValue" ); - char aCharArray[2048]; + sal_Int8 aCharArray[2048]; // First try to fetch the data with the little Buffer: SQLLEN nMaxLen = sizeof aCharArray - 1; // GETDATA(SQL_C_CHAR,aCharArray,nMaxLen); |