diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2014-02-22 00:16:27 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2014-02-22 00:16:27 +0000 |
commit | 883d11a1832dd800e5e3db6c556010425605318e (patch) | |
tree | 8d721e8af3a077569eecfec5c69def933023456c /usr.sbin/eeprom/ofw_options.c | |
parent | b663c98c574962426ce4b743a7fdaba732923b27 (diff) | |
download | src-883d11a1832dd800e5e3db6c556010425605318e.tar.gz src-883d11a1832dd800e5e3db6c556010425605318e.zip |
In usr.sbin/eeprom/ofw_options.c, remove a superfluous const specifier.
Notes
Notes:
svn path=/projects/clang-sparc64/; revision=262317
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 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 }, |