Author: bms
Date: Thu Mar 19 10:23:26 2009
New Revision: 190024
URL: http://svn.freebsd.org/changeset/base/190024

Log:
  Fix size_t merge-o.

Modified:
  head/usr.bin/netstat/mroute.c

Modified: head/usr.bin/netstat/mroute.c
==============================================================================
--- head/usr.bin/netstat/mroute.c       Thu Mar 19 08:36:08 2009        
(r190023)
+++ head/usr.bin/netstat/mroute.c       Thu Mar 19 10:23:26 2009        
(r190024)
@@ -293,7 +293,7 @@ mroutepr(u_long pmfchashtbl, u_long pmfc
                        len -= sizeof(*m);
                }
                if (len != 0)
-                       warnx("print_mfc: %d trailing bytes", len);
+                       warnx("print_mfc: %lu trailing bytes", (u_long)len);
 
                free(mfctable);
        } else {
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to