The branch main has been updated by imp:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=097e8701c9fc0d56caa8c9dad64a77d8ffa1cf2c

commit 097e8701c9fc0d56caa8c9dad64a77d8ffa1cf2c
Author:     Warner Losh <[email protected]>
AuthorDate: 2021-05-05 21:26:09 +0000
Commit:     Warner Losh <[email protected]>
CommitDate: 2021-05-05 21:26:09 +0000

    fix style nit: space after if
---
 sys/ddb/db_expr.c | 4 ++--
 1 file 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 */
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/dev-commits-src-main
To unsubscribe, send any mail to "[email protected]"

Reply via email to