svn commit: r197641 - head/sys/kern

Andriy Gapon avg at FreeBSD.org
Wed Sep 30 11:14:14 UTC 2009


Author: avg
Date: Wed Sep 30 11:14:13 2009
New Revision: 197641
URL: http://svn.freebsd.org/changeset/base/197641

Log:
  print_caddr_t: drop incorrect __unused attribute from parameter
  
  seems like a purely cosmetic change
  
  Reviewed by:	jhb, kib
  MFC after:	1 week

Modified:
  head/sys/kern/init_main.c

Modified: head/sys/kern/init_main.c
==============================================================================
--- head/sys/kern/init_main.c	Wed Sep 30 11:05:12 2009	(r197640)
+++ head/sys/kern/init_main.c	Wed Sep 30 11:14:13 2009	(r197641)
@@ -284,7 +284,7 @@ restart:
  ***************************************************************************
  */
 static void
-print_caddr_t(void *data __unused)
+print_caddr_t(void *data)
 {
 	printf("%s", (char *)data);
 }


More information about the svn-src-all mailing list