diff options
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/mrbc/mrbc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/mrbc/mrbc.c b/tools/mrbc/mrbc.c index 4803b5db7..b42ca2234 100644 --- a/tools/mrbc/mrbc.c +++ b/tools/mrbc/mrbc.c @@ -43,7 +43,7 @@ usage(const char *name) const char *const *p = usage_msg; printf("Usage: %s [switches] programfile\n", name); - while(*p) + while (*p) printf(" %s\n", *p++); } @@ -107,7 +107,7 @@ parse_args(mrb_state *mrb, int argc, char **argv, struct _args *args) args->check_syntax = 1; break; case 'v': - if(!args->verbose) mrb_show_version(mrb); + if (!args->verbose) mrb_show_version(mrb); args->verbose = 1; break; case 'g': |
