aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--undump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/undump.c b/undump.c
index 9f5faf23..28c4ab7e 100644
--- a/undump.c
+++ b/undump.c
@@ -3,7 +3,7 @@
3** load bytecodes from files 3** load bytecodes from files
4*/ 4*/
5 5
6char* rcs_undump="$Id: undump.c,v 1.17 1996/11/14 11:44:34 lhf Exp lhf $"; 6char* rcs_undump="$Id: undump.c,v 1.18 1996/11/14 13:33:15 lhf Exp lhf $";
7 7
8#include <stdio.h> 8#include <stdio.h>
9#include <string.h> 9#include <string.h>
@@ -253,7 +253,7 @@ static void LoadHeader(FILE* D) /* TODO: error handling */
253 int version; 253 int version;
254 LoadSignature(D); 254 LoadSignature(D);
255 version=getc(D); 255 version=getc(D);
256 if (version>23) /* after 2.5 */ 256 if (version>0x23) /* after 2.5 */
257 { 257 {
258 int oldsizeofI=getc(D); 258 int oldsizeofI=getc(D);
259 int oldsizeofF=getc(D); 259 int oldsizeofF=getc(D);