svn commit: r262317 - projects/clang-sparc64/usr.sbin/eeprom

Dimitry Andric dim at FreeBSD.org
Sat Feb 22 00:16:27 UTC 2014


Author: dim
Date: Sat Feb 22 00:16:27 2014
New Revision: 262317
URL: http://svnweb.freebsd.org/changeset/base/262317

Log:
  In usr.sbin/eeprom/ofw_options.c, remove a superfluous const specifier.

Modified:
  projects/clang-sparc64/usr.sbin/eeprom/ofw_options.c

Modified: projects/clang-sparc64/usr.sbin/eeprom/ofw_options.c
==============================================================================
--- projects/clang-sparc64/usr.sbin/eeprom/ofw_options.c	Sat Feb 22 00:09:43 2014	(r262316)
+++ projects/clang-sparc64/usr.sbin/eeprom/ofw_options.c	Sat Feb 22 00:16:27 2014	(r262317)
@@ -63,7 +63,7 @@ static int	ofwo_secmode(const struct ofw
 static int	ofwo_secpwd(const struct ofwo_extabent *, int, const void *,
 		    int, const char *);
 
-static const struct ofwo_extabent const ofwo_extab[] = {
+static const struct ofwo_extabent ofwo_extab[] = {
 	{ "oem-logo",			ofwo_oemlogo },
 	{ "security-mode",		ofwo_secmode },
 	{ "security-password",		ofwo_secpwd },


More information about the svn-src-projects mailing list