git: 097e8701c9fc - main - fix style nit: space after if

Warner Losh imp at FreeBSD.org
Wed May 5 21:27:32 UTC 2021


The branch main has been updated by imp:

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

commit 097e8701c9fc0d56caa8c9dad64a77d8ffa1cf2c
Author:     Warner Losh <imp at FreeBSD.org>
AuthorDate: 2021-05-05 21:26:09 +0000
Commit:     Warner Losh <imp at FreeBSD.org>
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 */


More information about the dev-commits-src-main mailing list