]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Print warnings to stderr and correct spelling
authorGuido van Rossum <guido@python.org>
Thu, 3 Sep 1992 20:45:24 +0000 (20:45 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 3 Sep 1992 20:45:24 +0000 (20:45 +0000)
Parser/acceler.c

index 5c1de916b668457685a57eb58091031ca7771d54..6765de0469dead8bc6fdb1bc4e7f1b0a8c728f1c 100644 (file)
@@ -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
 }