summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorLionel Elie Mamane <lionel@mamane.lu>2012-12-05 06:05:58 +0100
committerLionel Elie Mamane <lionel@mamane.lu>2012-12-06 19:42:36 +0100
commit6f554567af933f1f437792aae02e378e545ecce4 (patch)
treeb7716f4ce1df4628ac2cb1b78fa976f31ceb71a5 /connectivity
parent4500daf6aa91b0019234a8e2dd70a830b4654c13 (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.cxx2
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);