summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-09-03 20:45:24 (GMT)
committerGuido van Rossum <guido@python.org>1992-09-03 20:45:24 (GMT)
commit888d205fff5fc3151adc663e23d12802d5418c00 (patch)
treefa7c9bf79f377c634cfe4abf3ad256c14862650e /Parser
parentba3690cd091f7f045f8cfdff9dcec708f0058559 (diff)
downloadcpython-888d205fff5fc3151adc663e23d12802d5418c00.zip
cpython-888d205fff5fc3151adc663e23d12802d5418c00.tar.gz
cpython-888d205fff5fc3151adc663e23d12802d5418c00.tar.bz2
Print warnings to stderr and correct spelling
Diffstat (limited to 'Parser')
-rw-r--r--Parser/acceler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Parser/acceler.c b/Parser/acceler.c
index 5c1de91..6765de0 100644
--- a/Parser/acceler.c
+++ b/Parser/acceler.c
@@ -49,14 +49,14 @@ addaccelerators(g)
dfa *d;
int i;
#ifdef DEBUG
- printf("Adding parser accellerators ...\n");
+ fprintf(stderr, "Adding parser accelerators ...\n");
#endif
d = g->g_dfa;
for (i = g->g_ndfas; --i >= 0; d++)
fixdfa(g, d);
g->g_accel = 1;
#ifdef DEBUG
- printf("Done.\n");
+ fprintf(stderr, "Done.\n");
#endif
}