aboutsummaryrefslogtreecommitdiff
path: root/undump.c
diff options
context:
space:
mode:
Diffstat (limited to 'undump.c')
-rw-r--r--undump.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/undump.c b/undump.c
index 26becc99..6c58dff2 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.11 1996/03/08 21:44:12 lhf Exp lhf $"; 6char* rcs_undump="$Id: undump.c,v 1.12 1996/03/11 22:01:46 lhf Exp lhf $";
7 7
8#include <stdio.h> 8#include <stdio.h>
9#include <string.h> 9#include <string.h>
@@ -217,7 +217,6 @@ static void LoadFunction(FILE* D)
217 *p++=c.m.c1; *p++=c.m.c2; *p++=c.m.c3; *p++=c.m.c4; 217 *p++=c.m.c1; *p++=c.m.c2; *p++=c.m.c3; *p++=c.m.c4;
218 lastF=lastF->next=tf; 218 lastF=lastF->next=tf;
219 } 219 }
220 tf->marked=0;
221 tf->code=LoadBlock(tf->size,D); 220 tf->code=LoadBlock(tf->size,D);
222 if (swapword || swapfloat) FixCode(tf->code,tf->code+tf->size); 221 if (swapword || swapfloat) FixCode(tf->code,tf->code+tf->size);
223 while (1) /* unthread */ 222 while (1) /* unthread */