Displaying 1 result from an estimated 1 matches for "05cab50".
Did you mean:
05c6b90
2016 Jul 22
1
[PATCH] static const char *str -> static const char str
...= "m:v";
+ static const char options[] = "m:v";
static const struct option long_options[] = {
{ "help", 0, 0, HELP_OPTION },
{ "append", 1, 0, 0 },
diff --git a/utils/boot-benchmark/boot-benchmark.c b/utils/boot-benchmark/boot-benchmark.c
index 05cab50..fb946de 100644
--- a/utils/boot-benchmark/boot-benchmark.c
+++ b/utils/boot-benchmark/boot-benchmark.c
@@ -79,7 +79,7 @@ int
main (int argc, char *argv[])
{
enum { HELP_OPTION = CHAR_MAX + 1 };
- static const char *options = "m:";
+ static const char options[] = "m:";...