fix style nit: space after if
This commit is contained in:
parent
d00aff6278
commit
097e8701c9
@ -125,7 +125,7 @@ db_unary(db_expr_t *valuep)
|
||||
return (true);
|
||||
}
|
||||
if (t == tEXCL) {
|
||||
if(!db_unary(valuep)) {
|
||||
if (!db_unary(valuep)) {
|
||||
db_printf("Expression syntax error after '%c'\n", '!');
|
||||
db_error(NULL);
|
||||
/* NOTREACHED */
|
||||
@ -134,7 +134,7 @@ db_unary(db_expr_t *valuep)
|
||||
return (true);
|
||||
}
|
||||
if (t == tBIT_NOT) {
|
||||
if(!db_unary(valuep)) {
|
||||
if (!db_unary(valuep)) {
|
||||
db_printf("Expression syntax error after '%c'\n", '~');
|
||||
db_error(NULL);
|
||||
/* NOTREACHED */
|
||||
|
Loading…
Reference in New Issue
Block a user