diff options
author | 2005-07-26 05:21:27 +0000 | |
---|---|---|
committer | 2005-07-26 05:21:27 +0000 | |
commit | 46d2e85189480528635ff2db872cfc0dcefa151b (patch) | |
tree | 095c1dd428bec7c16b0d03125fd37c873475e985 | |
parent | - typos, punctuation, layout, macro tweaks (diff) | |
download | wireguard-openbsd-46d2e85189480528635ff2db872cfc0dcefa151b.tar.xz wireguard-openbsd-46d2e85189480528635ff2db872cfc0dcefa151b.zip |
Add missing newline to error message.
-rw-r--r-- | sys/net/pf_ioctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/net/pf_ioctl.c b/sys/net/pf_ioctl.c index 2a76384e822..1905f5b56ff 100644 --- a/sys/net/pf_ioctl.c +++ b/sys/net/pf_ioctl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_ioctl.c,v 1.146 2005/07/11 14:14:14 dhartmei Exp $ */ +/* $OpenBSD: pf_ioctl.c,v 1.147 2005/07/26 05:21:27 pascoe Exp $ */ /* * Copyright (c) 2001 Daniel Hartmeier @@ -537,7 +537,7 @@ pf_anchor_remove(struct pf_rule *r) if (r->anchor == NULL) return; if (r->anchor->refcnt <= 0) { - printf("pf_anchor_remove: broken refcount"); + printf("pf_anchor_remove: broken refcount\n"); r->anchor = NULL; return; } |