Author: csjp
Date: Wed Jan 12 23:07:51 2011
New Revision: 217333
URL: http://svn.freebsd.org/changeset/base/217333

Log:
  Un-break the build: use the correct format specifier for sizeof()

Modified:
  head/sys/netinet/if_ether.c

Modified: head/sys/netinet/if_ether.c
==============================================================================
--- head/sys/netinet/if_ether.c Wed Jan 12 23:06:38 2011        (r217332)
+++ head/sys/netinet/if_ether.c Wed Jan 12 23:07:51 2011        (r217333)
@@ -536,7 +536,7 @@ in_arpinput(struct mbuf *m)
         * a protocol length not equal to an IPv4 address.
         */
        if (ah->ar_pln != sizeof(struct in_addr)) {
-               log(LOG_ERR, "in_arp: requested protocol length != %ld\n",
+               log(LOG_ERR, "in_arp: requested protocol length != %zu\n",
                    sizeof(struct in_addr));
                return;
        }
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to