diff options
Diffstat (limited to 'regress/puny-test.c')
-rw-r--r-- | regress/puny-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/puny-test.c b/regress/puny-test.c index b392335..c6757e5 100644 --- a/regress/puny-test.c +++ b/regress/puny-test.c @@ -23,7 +23,7 @@ struct conf conf; struct imsgbuf logibuf, servibuf[PROC_MAX]; -struct suite { +const struct suite { const char *src; const char *res; } t[] = { @@ -58,7 +58,7 @@ sandbox_logger_process(void) int main(int argc, char **argv) { - struct suite *i; + const struct suite *i; int failed; char buf[64]; /* name len */ const char *parse_err; |