Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Feb 2014 00:16:27 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r262317 - projects/clang-sparc64/usr.sbin/eeprom
Message-ID:  <201402220016.s1M0GRhH039122@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 },



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402220016.s1M0GRhH039122>