From e7f4165f0b894da4c379b961a76f265c208f0bb7 Mon Sep 17 00:00:00 2001 From: yitam Date: Thu, 2 Feb 2017 14:25:09 -0800 Subject: [PATCH] corrected comment --- source/shared/core_util.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/shared/core_util.cpp b/source/shared/core_util.cpp index 7afabaad..94b5bf6d 100644 --- a/source/shared/core_util.cpp +++ b/source/shared/core_util.cpp @@ -251,7 +251,7 @@ bool core_sqlsrv_get_odbc_error( sqlsrv_context& ctx, int record_number, sqlsrv_ return false; } - // In linux we need to calculate number of characters + // We need to calculate number of characters SQLLEN wsqlstate_len = sizeof( wsqlstate ) / sizeof( SQLWCHAR ); SQLLEN sqlstate_len = 0; convert_string_from_utf16(enc, wsqlstate, wsqlstate_len, (char**)&error->sqlstate, sqlstate_len);