diff options
Diffstat (limited to 'byterun/intext.h')
-rw-r--r-- | byterun/intext.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/byterun/intext.h b/byterun/intext.h index 9fc88d348..9fa67cac2 100644 --- a/byterun/intext.h +++ b/byterun/intext.h @@ -75,7 +75,7 @@ any value below 2^N - (2^N / (2 * sizeof(value))) suffices. We just take 2^(N-1) for simplicity. */ -#define INITIAL_OFFSET_MAX (1L << (8 * sizeof(value) - 1)) +#define INITIAL_OFFSET_MAX (1UL << (8 * sizeof(value) - 1)) /* The entry points */ @@ -84,7 +84,7 @@ value input_value P((struct channel * chan)); value input_value_from_string P((value str, value ofs)); /* Auxiliary stuff for sending code pointers */ -char * code_checksum P((void)); +unsigned char * code_checksum P((void)); #ifndef NATIVE_CODE #include "fix_code.h" |