summaryrefslogtreecommitdiff
path: root/hwpfilter/source/hcode.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter/source/hcode.cxx')
-rw-r--r--hwpfilter/source/hcode.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/hwpfilter/source/hcode.cxx b/hwpfilter/source/hcode.cxx
index b674d5cbcd92..e0150524b27b 100644
--- a/hwpfilter/source/hcode.cxx
+++ b/hwpfilter/source/hcode.cxx
@@ -1399,7 +1399,7 @@ char* base64_encode_string( const uchar *buf, unsigned int len )
int c1, c2;
unsigned int i;
- out=(char *)malloc( (len*4/3)+8 );
+ out=static_cast<char *>(malloc( (len*4/3)+8 ));
/* Get three characters at a time and encode them. */
for (i=0; i < len/3; ++i)