diff options
author | msvensson@neptunus.(none) <> | 2006-01-16 12:17:30 +0100 |
---|---|---|
committer | msvensson@neptunus.(none) <> | 2006-01-16 12:17:30 +0100 |
commit | b54920bce72074532b279d1d98eeb05cd1af3419 (patch) | |
tree | 651817aac4f4a59795814e565cd508e5648d80a6 /sql | |
parent | d3b64781e16367b5b1917fc25d77d19f71a33712 (diff) | |
download | mariadb-git-b54920bce72074532b279d1d98eeb05cd1af3419.tar.gz |
BUG#6554 Problem Building MySql on Fedora Core 3
- Remove the local static var
Diffstat (limited to 'sql')
-rw-r--r-- | sql/ha_berkeley.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/ha_berkeley.cc b/sql/ha_berkeley.cc index b307b3a4b75..4ee844ac719 100644 --- a/sql/ha_berkeley.cc +++ b/sql/ha_berkeley.cc @@ -336,8 +336,9 @@ void berkeley_cleanup_log_files(void) ** Berkeley DB tables *****************************************************************************/ +static const char *bdb_bas_exts[]= { ha_berkeley_ext, NullS }; const char **ha_berkeley::bas_ext() const -{ static const char *ext[]= { ha_berkeley_ext, NullS }; return ext; } +{ return bdb_bas_exts; } static int |