summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/hwpfile.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/hwpfilter/source/hwpfile.cxx b/hwpfilter/source/hwpfile.cxx
index 6e1d488ddef8..b80f8c1fd05e 100644
--- a/hwpfilter/source/hwpfile.cxx
+++ b/hwpfilter/source/hwpfile.cxx
@@ -284,7 +284,7 @@ void HWPFile::TagsRead()
uint tag;
if (!Read4b(tag))
return;
- uint size;
+ int size;
if (!Read4b(size))
return;
if (size <= 0 && tag > 0){
@@ -318,7 +318,7 @@ void HWPFile::TagsRead()
SkipBlock( size );
else
{
- for( uint i = 0 ; i < size/617 ; i++)
+ for( int i = 0 ; i < size/617 ; i++)
{
HyperText *hypert = new HyperText;
hypert->Read(*this);