summaryrefslogtreecommitdiff
path: root/parseutils.h
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2022-12-11 15:18:26 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-01-03 11:02:11 -0800
commit6db8fd556e2562e9a0a821c0d6fd4f7cdcf6266c (patch)
tree45171678d6b1fbfe936bb2586933d3e03c93500a /parseutils.h
parent299c9762b1dbe53f3297c54e5526aeae767d1a10 (diff)
Mark more pointers as const
Some suggested by cppcheck, others by manual code inspection Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'parseutils.h')
-rw-r--r--parseutils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/parseutils.h b/parseutils.h
index 5cc9391..41333e4 100644
--- a/parseutils.h
+++ b/parseutils.h
@@ -68,12 +68,12 @@ extern ExprDef *ExprCreateBinary(unsigned /* op */ ,
ExprDef * /* right */
);
-extern KeycodeDef *KeycodeCreate(char * /* name */ ,
+extern KeycodeDef *KeycodeCreate(const char * /* name */ ,
ExprDef * /* value */
);
-extern KeyAliasDef *KeyAliasCreate(char * /* alias */ ,
- char * /* real */
+extern KeyAliasDef *KeyAliasCreate(const char * /* alias */ ,
+ const char * /* real */
);
extern VModDef *VModCreate(Atom /* name */ ,