diff options
| author | rillig <rillig@NetBSD.org> | 2023-06-10 18:46:42 +0000 |
|---|---|---|
| committer | rillig <rillig@NetBSD.org> | 2023-06-10 18:46:42 +0000 |
| commit | a220cfbaefe1f97cd83fab8a158b6bb5502b330c (patch) | |
| tree | 93bafe1485fdcb366ebc7440f07283c00e0916c1 /usr.bin/indent/debug.c | |
| parent | e9ab7102fd7aff1f39b396d6564f79f5451e3d50 (diff) | |
indent: fix line break between semicolon and brace
Diffstat (limited to 'usr.bin/indent/debug.c')
| -rw-r--r-- | usr.bin/indent/debug.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/indent/debug.c b/usr.bin/indent/debug.c index dfb2a7fcf2f..564c6d5b588 100644 --- a/usr.bin/indent/debug.c +++ b/usr.bin/indent/debug.c @@ -1,4 +1,4 @@ -/* $NetBSD: debug.c,v 1.50 2023/06/10 16:43:55 rillig Exp $ */ +/* $NetBSD: debug.c,v 1.51 2023/06/10 18:46:42 rillig Exp $ */ /*- * Copyright (c) 2023 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: debug.c,v 1.50 2023/06/10 16:43:55 rillig Exp $"); +__RCSID("$NetBSD: debug.c,v 1.51 2023/06/10 18:46:42 rillig Exp $"); #include <stdarg.h> #include <string.h> @@ -395,6 +395,6 @@ debug_psyms_stack(const char *situation) for (int i = 0; i <= psyms->top; ++i) debug_printf(" %d %s", psyms->ind_level[i], psym_name[psyms->sym[i]]); - debug_blank_line(); + debug_println(""); } #endif |
