Index: eagle/eagle_bin/test_parser/eagle_bin.c =================================================================== --- eagle/eagle_bin/test_parser/eagle_bin.c (revision 9379) +++ eagle/eagle_bin/test_parser/eagle_bin.c (revision 9380) @@ -966,7 +966,7 @@ if (ss->ss_type == SS_DIRECT) { - printf("About to parse %ld direct sub-blocks\n", numch); + printf("%s #About to parse %ld direct sub-blocks {\n", ind, numch); for(n = 0; n < numch && *numblocks > 0; n++) { int res = read_block(numblocks, level+1, ctx, f, fn); if (res < 0) @@ -976,7 +976,7 @@ } else { long rem = numch; - printf("About to parse %ld recursive sub-blocks\n", numch); + printf("%s #About to parse %ld recursive sub-blocks {\n", ind, numch); for(n = 0; n < numch && rem > 0; n++) { int res = read_block(&rem, level+1, ctx, f, fn); if (res < 0) @@ -987,7 +987,7 @@ } } - printf("blocks remaining at end of read_block routine = %ld (processed=%d)\n", *numblocks, processed); + printf("%s #blocks remaining at end of read_block routine = %ld (processed=%d) }\n", ind, *numblocks, processed); return processed; }