summaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorDaniel Hartmeier <dhartmei@cvs.openbsd.org>2001-06-26 12:47:11 +0000
committerDaniel Hartmeier <dhartmei@cvs.openbsd.org>2001-06-26 12:47:11 +0000
commit6844388f5bcf3294e8f4cdc549d3faa59c846396 (patch)
treebde59e2d3102f9aafe83e639ad9cd9609b2bbbcd /sbin
parentc7af11680054187833afcdf5fbfbb7fa96b05977 (diff)
add space after line number; wilfried@
Diffstat (limited to 'sbin')
-rw-r--r--sbin/pfctl/pfctl_parser.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/pfctl_parser.c b/sbin/pfctl/pfctl_parser.c
index 81ce1fd01a2..8315d823d23 100644
--- a/sbin/pfctl/pfctl_parser.c
+++ b/sbin/pfctl/pfctl_parser.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pfctl_parser.c,v 1.9 2001/06/26 12:27:14 wilfried Exp $ */
+/* $OpenBSD: pfctl_parser.c,v 1.10 2001/06/26 12:47:10 dhartmei Exp $ */
/*
* Copyright (c) 2001, Daniel Hartmeier
@@ -70,7 +70,7 @@ error(int n, char *fmt, ...)
va_list ap;
va_start(ap, fmt);
- fprintf(stderr, "%s: line %d", __progname, n);
+ fprintf(stderr, "%s: line %d ", __progname, n);
vfprintf(stderr, fmt, ap);
va_end(ap);
return (0);