parse_err is a const pointer

This commit is contained in:
Omar Polo 2021-02-01 19:58:04 +00:00
parent ad58806e30
commit 1e7591a922
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ main(int argc, char **argv)
struct suite *i;
int failed;
char buf[64]; /* name len */
char *parse_err;
const char *parse_err;
failed = 0;
for (i = t; i->src != NULL; ++i) {