svn commit: r204650 - head/share/man/man9

Gleb Smirnoff glebius at FreeBSD.org
Wed Mar 3 18:49:15 UTC 2010


Author: glebius
Date: Wed Mar  3 18:49:15 2010
New Revision: 204650
URL: http://svn.freebsd.org/changeset/base/204650

Log:
  Remove C99 initializer, since dominant style is to use non-C99 initializers.
  
  Requested by:	jhb

Modified:
  head/share/man/man9/driver.9

Modified: head/share/man/man9/driver.9
==============================================================================
--- head/share/man/man9/driver.9	Wed Mar  3 18:30:10 2010	(r204649)
+++ head/share/man/man9/driver.9	Wed Mar  3 18:49:15 2010	(r204650)
@@ -62,9 +62,9 @@ static device_method_t foo_methods[] = {
 };
 
 static driver_t foo_driver = {
-	.name = "foo",
-	.methods = foo_methods,
-	.size = sizeof(struct foo_softc)
+	"foo",
+	foo_methods,
+	sizeof(struct foo_softc)
 };
 
 static devclass_t foo_devclass;


More information about the svn-src-head mailing list