diff options
author | dim <dim@FreeBSD.org> | 2014-02-22 00:16:27 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2014-02-22 00:16:27 +0000 |
commit | c6424a2503905a893f3add62cc7bc70b3c25ebdf (patch) | |
tree | 8d721e8af3a077569eecfec5c69def933023456c /usr.sbin/eeprom/ofw_options.c | |
parent | 102abf6fd2a7ebb3465a08a2cfa2477ce22e4eef (diff) | |
download | FreeBSD-src-c6424a2503905a893f3add62cc7bc70b3c25ebdf.zip FreeBSD-src-c6424a2503905a893f3add62cc7bc70b3c25ebdf.tar.gz |
In usr.sbin/eeprom/ofw_options.c, remove a superfluous const specifier.
Diffstat (limited to 'usr.sbin/eeprom/ofw_options.c')
-rw-r--r-- | usr.sbin/eeprom/ofw_options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/eeprom/ofw_options.c b/usr.sbin/eeprom/ofw_options.c index eb7437f..6e6aa85 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 }, |