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)
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.


No differences found