svn commit: r217346 - stable/8/sys/net

Bjoern A. Zeeb bz at FreeBSD.org
Thu Jan 13 08:19:10 UTC 2011


Author: bz
Date: Thu Jan 13 08:19:09 2011
New Revision: 217346
URL: http://svn.freebsd.org/changeset/base/217346

Log:
  MFC r215238 (originally by kib):
  
    Use 'z' modifier for size_t printing.
  
  Should have been merged with r215207 by gnn.

Modified:
  stable/8/sys/net/if_llatbl.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/net/if_llatbl.c
==============================================================================
--- stable/8/sys/net/if_llatbl.c	Thu Jan 13 06:48:43 2011	(r217345)
+++ stable/8/sys/net/if_llatbl.c	Thu Jan 13 08:19:09 2011	(r217346)
@@ -122,7 +122,7 @@ llentry_free(struct llentry *lle)
 	}
 
 	KASSERT(lle->la_numheld == 0, 
-		("%s: la_numheld %d > 0, pkts_droped %ld", __func__, 
+		("%s: la_numheld %d > 0, pkts_droped %zd", __func__, 
 		 lle->la_numheld, pkts_dropped));
 
 	LLE_FREE_LOCKED(lle);


More information about the svn-src-stable-8 mailing list