From cbf16fdf2162fc0691b55390e8d0c9ec1f5c08af Mon Sep 17 00:00:00 2001 From: Mike Heffner Date: Thu, 16 Aug 2001 16:18:14 +0000 Subject: Print a space between the function name and line number. PR: bin/10980 MFC after: 2 weeks --- usr.bin/ctags/print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin') diff --git a/usr.bin/ctags/print.c b/usr.bin/ctags/print.c index 4e2bc4f72d35..d8d72bf7e10e 100644 --- a/usr.bin/ctags/print.c +++ b/usr.bin/ctags/print.c @@ -109,7 +109,7 @@ put_entries(node) printf("%s %s %d\n", node->entry, node->file, (node->lno + 63) / 64); else if (xflag) - printf("%-16s%4d %-16s %s\n", + printf("%-16s %4d %-16s %s\n", node->entry, node->lno, node->file, node->pat); else fprintf(outf, "%s\t%s\t%c^%s%c\n", -- cgit v1.3