diff options
| author | Warner Losh <imp@FreeBSD.org> | 2021-05-05 21:26:09 +0000 |
|---|---|---|
| committer | Warner Losh <imp@FreeBSD.org> | 2021-05-05 21:26:09 +0000 |
| commit | 097e8701c9fc0d56caa8c9dad64a77d8ffa1cf2c (patch) | |
| tree | 519312753a0965e4b36cd7d2e57ab50c405503ba /sys/ddb | |
| parent | d00aff627828ef69d7333537e3a81b47bfa1a8e8 (diff) | |
Diffstat (limited to 'sys/ddb')
| -rw-r--r-- | sys/ddb/db_expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/ddb/db_expr.c b/sys/ddb/db_expr.c index 340951089248..60fa463dc5dc 100644 --- a/sys/ddb/db_expr.c +++ b/sys/ddb/db_expr.c @@ -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 */ |
