Browse code

Fix petite function declaration - thx Nigel

git-svn: trunk@2281

aCaB authored on 2006/09/16 21:32:22
Showing 2 changed files
... ...
@@ -1,3 +1,8 @@
1
+Sat Sep 16 14:30:29 CEST 2006 (acab)
2
+------------------------------------
3
+  * libclamav/petite.h: fixed inconsistent function declaration.
4
+                        (thanks njh!)
5
+
1 6
 Sat Sep 16 10:54:30 BST 2006 (njh)
2 7
 ----------------------------------
3 8
   * libclamav/message.c:	Not all binhex messages were being decoded
... ...
@@ -23,6 +23,6 @@
23 23
 #include "cltypes.h"
24 24
 #include "pe.h"
25 25
 
26
-int petite_inflate2x_1to9(char *buf, uint32_t minrva, int bufsz, struct pe_image_section_hdr *sections, int sectcount, uint32_t Imagebase, uint32_t pep, int desc, int version, uint32_t ResRva, uint32_t ResSize);
26
+int petite_inflate2x_1to9(char *buf, uint32_t minrva, uint32_t bufsz, struct pe_image_section_hdr *sections, unsigned int sectcount, uint32_t Imagebase, uint32_t pep, int desc, int version, uint32_t ResRva, uint32_t ResSize);
27 27
 
28 28
 #endif