Date: Mon, 6 May 2013 21:43:16 +0000 (UTC) From: Gleb Smirnoff <glebius@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r250312 - head/sys/netpfil/pf Message-ID: <201305062143.r46LhGoG078951@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: glebius Date: Mon May 6 21:43:15 2013 New Revision: 250312 URL: http://svnweb.freebsd.org/changeset/base/250312 Log: Simplify printf(). Modified: head/sys/netpfil/pf/pf.c Modified: head/sys/netpfil/pf/pf.c ============================================================================== --- head/sys/netpfil/pf/pf.c Mon May 6 21:13:22 2013 (r250311) +++ head/sys/netpfil/pf/pf.c Mon May 6 21:43:15 2013 (r250312) @@ -1103,10 +1103,9 @@ pf_state_insert(struct pfi_kif *kif, str PF_HASHROW_UNLOCK(ih); if (V_pf_status.debug >= PF_DEBUG_MISC) { printf("pf: state insert failed: " - "id: %016llx creatorid: %08x", + "id: %016llx creatorid: %08x\n", (unsigned long long)be64toh(s->id), ntohl(s->creatorid)); - printf("\n"); } pf_detach_state(s); return (-1);
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305062143.r46LhGoG078951>