Fixed END_STACK definition and fixed printf stmnt.

This commit is contained in:
Janet B. Anderson
1996-06-19 14:37:06 +00:00
parent 4b248c8abe
commit 20eed1bd05
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -145,7 +145,7 @@ char *post;
/* DEBUG print statements
for (i=0;i<184;i++){
printf ("%d_",post[i]);
if ( post[i] == -1 ) break;
if ( post[i] == END_STACK ) break;
if ( post[i] == 71 ) i=i+8;
}
printf ("*FINISHED*\n");
@@ -490,7 +490,7 @@ printf ("*FINISHED*\n");
++post;
if ( post == NULL ) {
++post;
printf("%.7s bad constant in expression\n",*post);
printf("%.7s bad constant in expression\n",post);
break;
}
memcpy((void *)pstacktop,post,8);
+2 -2
View File
@@ -145,7 +145,7 @@ char *post;
/* DEBUG print statements
for (i=0;i<184;i++){
printf ("%d_",post[i]);
if ( post[i] == -1 ) break;
if ( post[i] == END_STACK ) break;
if ( post[i] == 71 ) i=i+8;
}
printf ("*FINISHED*\n");
@@ -490,7 +490,7 @@ printf ("*FINISHED*\n");
++post;
if ( post == NULL ) {
++post;
printf("%.7s bad constant in expression\n",*post);
printf("%.7s bad constant in expression\n",post);
break;
}
memcpy((void *)pstacktop,post,8);