diff options
author | unknown <jimw@mysql.com> | 2005-01-11 01:01:35 +0100 |
---|---|---|
committer | unknown <jimw@mysql.com> | 2005-01-11 01:01:35 +0100 |
commit | 4bd2b5adc4789b76088be0ed202752dad7c64a86 (patch) | |
tree | bd41e800216e7e36378f3c0032690e70a687f3f1 /sql/examples | |
parent | 4bb238a0546b58cab1e8e2cb0efdc854dcc29752 (diff) | |
download | mariadb-git-4bd2b5adc4789b76088be0ed202752dad7c64a86.tar.gz |
Fix style nit
sql/examples/ha_archive.cc:
Fix style
Diffstat (limited to 'sql/examples')
-rw-r--r-- | sql/examples/ha_archive.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/examples/ha_archive.cc b/sql/examples/ha_archive.cc index 59024405bec..ef609513489 100644 --- a/sql/examples/ha_archive.cc +++ b/sql/examples/ha_archive.cc @@ -498,7 +498,8 @@ int ha_archive::create(const char *name, TABLE *table_arg, goto error3; } - if (gzclose(archive)) { + if (gzclose(archive)) + { error= errno; goto error2; } |