From a220cfbaefe1f97cd83fab8a158b6bb5502b330c Mon Sep 17 00:00:00 2001 From: rillig Date: Sat, 10 Jun 2023 18:46:42 +0000 Subject: indent: fix line break between semicolon and brace --- tests/usr.bin/indent/lsym_if.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'tests') diff --git a/tests/usr.bin/indent/lsym_if.c b/tests/usr.bin/indent/lsym_if.c index bdc3d657c98..6725b4ff8d7 100644 --- a/tests/usr.bin/indent/lsym_if.c +++ b/tests/usr.bin/indent/lsym_if.c @@ -1,4 +1,4 @@ -/* $NetBSD: lsym_if.c,v 1.5 2023/06/10 16:43:56 rillig Exp $ */ +/* $NetBSD: lsym_if.c,v 1.6 2023/06/10 18:46:42 rillig Exp $ */ /* * Tests for the token lsym_if, which represents the keyword 'if' that starts @@ -38,8 +38,8 @@ function(void) if (0) if (1) if (2) -// $ FIXME: The '{' must be on a separate line, with indentation 8. - stmt(); { - } + stmt(); + { + } } //indent end -- cgit