format-parser: Fix inconsistent use of "char *" vs "char[NUMBER]".
authorBen Pfaff <blp@cs.stanford.edu>
Sat, 1 May 2021 22:53:09 +0000 (15:53 -0700)
committerBen Pfaff <blp@cs.stanford.edu>
Sat, 1 May 2021 22:53:09 +0000 (15:53 -0700)
commitea75d9702346b57b13830e619e9c447b0b976f89
treec2877c1a61c8819e1f7d81f99e5b11ff0f6b9fa6
parent1af33f3b4c0318a5f9b1ec76ecc7a5c6b575154e
format-parser: Fix inconsistent use of "char *" vs "char[NUMBER]".

These are equivalent according to the C standard in function prototypes,
but GCC 11 warns about using them inconsistently between a prototype and
a definition.  This commit avoids the warning.
src/language/lexer/format-parser.c
src/language/lexer/format-parser.h