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;
_______________________________________________
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