From a760198deb39887bcafd5ea831e9f1992902159e Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 27 Oct 2014 13:29:33 +0000 Subject: WaE: -Werror=sign-compare Change-Id: I3892645b52b1250be73df9359107b5bc28d2afff --- sw/source/filter/ww8/ww8par.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 )); -- cgit