From c6424a2503905a893f3add62cc7bc70b3c25ebdf Mon Sep 17 00:00:00 2001 From: dim Date: Sat, 22 Feb 2014 00:16:27 +0000 Subject: [PATCH] In usr.sbin/eeprom/ofw_options.c, remove a superfluous const specifier. --- usr.sbin/eeprom/ofw_options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/eeprom/ofw_options.c b/usr.sbin/eeprom/ofw_options.c index eb7437f15b59..6e6aa85ab16f 100644 --- a/usr.sbin/eeprom/ofw_options.c +++ b/usr.sbin/eeprom/ofw_options.c @@ -63,7 +63,7 @@ static int ofwo_secmode(const struct ofwo_extabent *, int, const void *, 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 },