diff options
author | Vladislav Vaintroub <wlad@montyprogram.com> | 2011-05-02 23:03:26 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@montyprogram.com> | 2011-05-02 23:03:26 +0200 |
commit | e6926b06da6406b36c0e6bf4ec8151cd0237151f (patch) | |
tree | 8a765ab5dbdfe71c7bad225573db4b44c6148d8b /storage | |
parent | 90e058e0c623f770ee602ebab86e91303f08c90a (diff) | |
download | mariadb-git-e6926b06da6406b36c0e6bf4ec8151cd0237151f.tar.gz |
Fix compile errors:
- from xtradb merge
- portability error in bitmap-t.c ( variable size array in non-portable)
Diffstat (limited to 'storage')
-rw-r--r-- | storage/xtradb/os/os0file.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/xtradb/os/os0file.c b/storage/xtradb/os/os0file.c index 31dec031af3..5b8e656d8b2 100644 --- a/storage/xtradb/os/os0file.c +++ b/storage/xtradb/os/os0file.c @@ -3817,7 +3817,8 @@ try_again: slot->pos, &dummy_mess1, &dummy_mess2, - &dummy_type); + &dummy_type, + &space_id); return(retval); } |