Merge pull request #151 from riscv/use_paren

Use parens after if.
update_defines
Tim Newsome 2017-12-21 12:50:56 -08:00 committed by GitHub
commit 105536089b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1200,7 +1200,7 @@ COMMAND_HANDLER(riscv_set_expose_csrs)
unsigned high = 0;
for (unsigned i = 0; i == 0 || CMD_ARGV[0][i-1]; i++) {
char c = CMD_ARGV[0][i];
if isspace(c) {
if (isspace(c)) {
// Ignore whitespace.
continue;
}