diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-04-20 23:11:43 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-04-20 23:11:43 +0900 |
| commit | c79172dfd5a7600300ac215cce1ccc766ec9aa98 (patch) | |
| tree | ed9cb374cd73a26b51090fc1b783162f9b912318 /tools | |
| parent | 2acf72455406540f77b7c4809d8bf2bd2878a907 (diff) | |
| download | mruby-c79172dfd5a7600300ac215cce1ccc766ec9aa98.tar.gz mruby-c79172dfd5a7600300ac215cce1ccc766ec9aa98.zip | |
put spaces after if/while
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': |
