diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1997-07-30 12:28:31 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1997-07-30 12:28:31 +0000 |
commit | d7f93706ae462b9f27de36d80805fcca11a61692 (patch) | |
tree | 747fc1cc7907f9cb7bd1483409e0997b30cf075d /byterun/intern.c | |
parent | 2f183944fe0c296ee7671cd99dfe0562d244b3fa (diff) |
Nettoyage des types de code_checksum
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1679 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/intern.c')
-rw-r--r-- | byterun/intern.c | 9 |
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 + + + |