|
From: Peep P. <so...@us...> - 2004-06-20 14:02:06
|
Update of /cvsroot/agd/server/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31851 Modified Files: debug.c Log Message: F_PUSH_ARRAy's type is shown using type2str Index: debug.c =================================================================== RCS file: /cvsroot/agd/server/src/debug.c,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- debug.c 14 Jun 2004 20:54:13 -0000 1.17 +++ debug.c 20 Jun 2004 14:01:57 -0000 1.18 @@ -235,7 +235,7 @@ break; case F_PUSH_ARRAY: num = code[++i]; - printf("type %d ", num); + printf("%s ", type2str(num)); num = code[++i]; printf("%d", num); break; |