summaryrefslogtreecommitdiff
path: root/hwpfilter/source/htags.h
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-06-21 11:33:27 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-06-21 12:24:31 +0100
commite8de073d6336a2a8e170ecb5e1598c8ff4819cef (patch)
tree4224736cff13586488106eb1799f2fed2f0c28aa /hwpfilter/source/htags.h
parent313c5e1e676655bcb6849e9ae8eaf78a18652e5d (diff)
use size_t here
Diffstat (limited to 'hwpfilter/source/htags.h')
-rw-r--r--hwpfilter/source/htags.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hwpfilter/source/htags.h b/hwpfilter/source/htags.h
index bb244c07dd59..21c610db4e9d 100644
--- a/hwpfilter/source/htags.h
+++ b/hwpfilter/source/htags.h
@@ -39,12 +39,12 @@ class HWPFile;
*/
struct EmPicture
{
- int size;
+ size_t size;
char name[16];
char type[16];
uchar *data;
- EmPicture(int size);
+ EmPicture(size_t size);
~EmPicture(void);
bool Read(HWPFile& hwpf);