summaryrefslogtreecommitdiffstats
path: root/byterun/intern.c
diff options
context:
space:
mode:
Diffstat (limited to 'byterun/intern.c')
-rw-r--r--byterun/intern.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/byterun/intern.c b/byterun/intern.c
index 15064ce81..b53313044 100644
--- a/byterun/intern.c
+++ b/byterun/intern.c
@@ -344,9 +344,9 @@ value marshal_data_size(buff, ofs) /* ML */
#include "md5.h"
-char * code_checksum()
+unsigned char * code_checksum()
{
- static char checksum[16];
+ static unsigned char checksum[16];
static int checksum_computed = 0;
if (! checksum_computed) {
@@ -365,9 +365,12 @@ char * code_checksum()
#include "fix_code.h"
-char * code_checksum()
+unsigned char * code_checksum()
{
return code_md5;
}
#endif
+
+
+