diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-10-27 13:29:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-10-27 14:34:19 +0000 |
commit | a760198deb39887bcafd5ea831e9f1992902159e (patch) | |
tree | 556c37ca790c6f8cd55fdc3baf6bb609c7fc252d | |
parent | 2152628832b9ccfb09832a394bf2184f2526411f (diff) |
WaE: -Werror=sign-compare
Change-Id: I3892645b52b1250be73df9359107b5bc28d2afff
-rw-r--r-- | sw/source/filter/ww8/ww8par.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx index 90fcc8c54f08..12ffe465baff 100644 --- a/sw/source/filter/ww8/ww8par.cxx +++ b/sw/source/filter/ww8/ww8par.cxx @@ -500,7 +500,7 @@ void Sttb::Print( FILE* fp ) if ( cData ) { - for (sal_Int32 index = 0; index < cData; ++index) + for (sal_uInt16 index = 0; index < cData; ++index) { if (index >= dataItems.size()) fprintf(fp, " Sttb truncated at entry %d(0x%x)\n", static_cast< int >( index ), static_cast< unsigned int >( index )); |