fix style nit: space after if

This commit is contained in:
Warner Losh 2021-05-05 15:26:09 -06:00
parent d00aff6278
commit 097e8701c9

View file

@ -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 */