diff options
Diffstat (limited to 'gcc/opts.c')
-rw-r--r-- | gcc/opts.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -169,7 +169,7 @@ base_of_path (const char *path, const char **base_out) char c = *p; while (c) { - if (IS_DIR_SEPARATOR(c)) + if (IS_DIR_SEPARATOR (c)) { base = p + 1; dot = 0; @@ -888,7 +888,7 @@ wrap_help (const char *help, } } - printf( " %-*.*s %.*s\n", col_width, item_width, item, len, help); + printf (" %-*.*s %.*s\n", col_width, item_width, item, len, help); item_width = 0; while (help[len] == ' ') len++; |