summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2012-05-23 11:57:09 +0200
committerDavid Tardon <dtardon@redhat.com>2012-05-29 07:24:48 +0200
commit0bd892ed039819a3ecebcdc2edf3813f8711672e (patch)
tree2671fb9c0f53539ba5a5ee8d5469375f05fa54a9 /connectivity
parent2d552f650102a30869659b4db258d902bdef2daa (diff)
WaE: comparison between signed and unsigned integer expressions
Change-Id: I32423e8334938b356f0f2a6c5a81e176bbd308c0
Diffstat (limited to 'connectivity')
-rwxr-xr-xconnectivity/source/parse/sqlbison.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/parse/sqlbison.y b/connectivity/source/parse/sqlbison.y
index c04851c33dd9..a58adac5878e 100755
--- a/connectivity/source/parse/sqlbison.y
+++ b/connectivity/source/parse/sqlbison.y
@@ -4607,7 +4607,7 @@ static ::rtl::OUString delComment( const ::rtl::OUString& rQuery )
bool bComment2 = false; // /* comment */
bool bComment = false; // -- or // comment
::rtl::OUStringBuffer aBuf(nQueryLen);
- for (size_t i=0; i < nQueryLen; ++i)
+ for (sal_Int32 i=0; i < nQueryLen; ++i)
{
if (bComment2)
{