diff options
| author | rillig <rillig@NetBSD.org> | 2023-05-16 08:22:11 +0000 |
|---|---|---|
| committer | rillig <rillig@NetBSD.org> | 2023-05-16 08:22:11 +0000 |
| commit | f8a523500fcd3fb827ddbf92c4b0ed047bc71f9c (patch) | |
| tree | c926aad5dbadbe73adbe7f28aa92496b8b7269cb /tests | |
| parent | edd0e944ee968ab366001b7291aa12a9aa9c84a1 (diff) | |
indent: remove blank between comment and parentheses or brackets
Finally, indent formats its own source code without messing up the
layout.
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/usr.bin/indent/fmt_decl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/usr.bin/indent/fmt_decl.c b/tests/usr.bin/indent/fmt_decl.c index b1c636db8bb..13c440b844c 100644 --- a/tests/usr.bin/indent/fmt_decl.c +++ b/tests/usr.bin/indent/fmt_decl.c @@ -1,4 +1,4 @@ -/* $NetBSD: fmt_decl.c,v 1.42 2023/05/15 21:51:46 rillig Exp $ */ +/* $NetBSD: fmt_decl.c,v 1.43 2023/05/16 08:22:11 rillig Exp $ */ /* * Tests for declarations of global variables, external functions, and local @@ -128,7 +128,7 @@ void t2 (char *x, int y) ,n ,o ; - int chars[ /* push the comma beyond column 74 .... */ ], x; + int chars[ /* push the comma beyond column 74 ...... */ ], x; } //indent end @@ -145,7 +145,7 @@ t2(char *x, int y) ,n ,o ; - int chars[ /* push the comma beyond column 74 .... */ ], + int chars[/* push the comma beyond column 74 ...... */], x; } //indent end |
