diff options
| author | rillig <rillig@NetBSD.org> | 2023-06-10 13:03:17 +0000 |
|---|---|---|
| committer | rillig <rillig@NetBSD.org> | 2023-06-10 13:03:17 +0000 |
| commit | 0fabb19f07ff8bad77769f583e9fc4cbafbc93a2 (patch) | |
| tree | c4b38c6a783c447ed6d1d91f16d3c9e334109851 /usr.bin/indent/debug.c | |
| parent | d30cd995c6fd15dee5f396c2bc9d08ad5805fdad (diff) | |
indent: clean up function names, fix blank lines in debug output
Diffstat (limited to 'usr.bin/indent/debug.c')
| -rw-r--r-- | usr.bin/indent/debug.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/indent/debug.c b/usr.bin/indent/debug.c index b9b6d2a642c..ebf9542854a 100644 --- a/usr.bin/indent/debug.c +++ b/usr.bin/indent/debug.c @@ -1,4 +1,4 @@ -/* $NetBSD: debug.c,v 1.48 2023/06/10 11:01:58 rillig Exp $ */ +/* $NetBSD: debug.c,v 1.49 2023/06/10 13:03:17 rillig Exp $ */ /*- * Copyright (c) 2023 The NetBSD Foundation, Inc. @@ -30,7 +30,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: debug.c,v 1.48 2023/06/10 11:01:58 rillig Exp $"); +__RCSID("$NetBSD: debug.c,v 1.49 2023/06/10 13:03:17 rillig Exp $"); #include <stdarg.h> #include <string.h> @@ -287,7 +287,7 @@ debug_ps_paren(void) } if (ps.nparen == 0) debug_printf(" none"); - debug_blank_line(); + debug_println(""); } static bool @@ -313,7 +313,7 @@ debug_ps_di_stack(void) debug_printf(" %d", ps.di_stack[i]); if (ps.decl_level == 0) debug_printf(" none"); - debug_blank_line(); + debug_println(""); } #define debug_ps_bool(name) \ |
