summaryrefslogtreecommitdiffstats
path: root/Parser/grammar.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-12-02 18:27:33 (GMT)
committerGuido van Rossum <guido@python.org>1996-12-02 18:27:33 (GMT)
commitfd8a393086fbf43597965d5e55bec158a094a466 (patch)
tree2e819fb69d233f219b1b93d5a4c451c1f2deec63 /Parser/grammar.c
parentbda7ca77724b75fa196e4367ae7580d510d6ee72 (diff)
downloadcpython-fd8a393086fbf43597965d5e55bec158a094a466.zip
cpython-fd8a393086fbf43597965d5e55bec158a094a466.tar.gz
cpython-fd8a393086fbf43597965d5e55bec158a094a466.tar.bz2
Make gcc -Wall happy
Diffstat (limited to 'Parser/grammar.c')
-rw-r--r--Parser/grammar.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/grammar.c b/Parser/grammar.c
index 3da7d3f..51bf90e 100644
--- a/Parser/grammar.c
+++ b/Parser/grammar.c
@@ -159,7 +159,7 @@ findlabel(ll, type, str)
}
fprintf(stderr, "Label %d/'%s' not found\n", type, str);
fatal("grammar.c:findlabel()");
- /*NOTREACHED*/
+ return 0; /* Make gcc -Wall happy */
}
/* Forward */