X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=init.c;h=bb0627b208a6c06bbcc4968744f838146f8060d3;hp=28061db8ea8f9a51d8e884c317ee3fc4309e11b1;hb=447931d99aff4dad5fabfafc3b96341d8143d90c;hpb=408874dae09d781eeff74775008ac79b641f412e diff --git a/init.c b/init.c index 28061db8..bb0627b2 100644 --- a/init.c +++ b/init.c @@ -2094,7 +2094,7 @@ static int fill_def_thread(void) static void show_debug_categories(void) { #ifdef FIO_INC_DEBUG - struct debug_level *dl = &debug_levels[0]; + const struct debug_level *dl = &debug_levels[0]; int curlen, first = 1; curlen = 0; @@ -2184,7 +2184,7 @@ static void usage(const char *name) } #ifdef FIO_INC_DEBUG -struct debug_level debug_levels[] = { +const struct debug_level debug_levels[] = { { .name = "process", .help = "Process creation/exit logging", .shift = FD_PROCESS, @@ -2262,7 +2262,7 @@ struct debug_level debug_levels[] = { static int set_debug(const char *string) { - struct debug_level *dl; + const struct debug_level *dl; char *p = (char *) string; char *opt; int i;