summaryrefslogtreecommitdiff
path: root/Parser/grammar1.c
diff options
context:
space:
mode:
authorInada Naoki <songofacandy@gmail.com>2019-04-23 20:39:37 +0900
committerGitHub <noreply@github.com>2019-04-23 20:39:37 +0900
commit09415ff0ebbbe97c8cd08ac1f94673d7a49c8018 (patch)
treec49ee25cd8762638867af92177cb90bced0ec4b4 /Parser/grammar1.c
parent574913479f26b5ff48827861bce68281be01d16e (diff)
downloadcpython-git-09415ff0ebbbe97c8cd08ac1f94673d7a49c8018.tar.gz
fix warnings by adding more const (GH-12924)
Diffstat (limited to 'Parser/grammar1.c')
-rw-r--r--Parser/grammar1.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/Parser/grammar1.c b/Parser/grammar1.c
index fec6d9ec0e..e0b8fbb8b8 100644
--- a/Parser/grammar1.c
+++ b/Parser/grammar1.c
@@ -7,12 +7,11 @@
/* Return the DFA for the given type */
-dfa *
+const dfa *
PyGrammar_FindDFA(grammar *g, int type)
{
- dfa *d;
/* Massive speed-up */
- d = &g->g_dfa[type - NT_OFFSET];
+ const dfa *d = &g->g_dfa[type - NT_OFFSET];
assert(d->d_type == type);
return d;
}