summaryrefslogtreecommitdiff
path: root/storage
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@montyprogram.com>2011-05-02 23:03:26 +0200
committerVladislav Vaintroub <wlad@montyprogram.com>2011-05-02 23:03:26 +0200
commite6926b06da6406b36c0e6bf4ec8151cd0237151f (patch)
tree8a765ab5dbdfe71c7bad225573db4b44c6148d8b /storage
parent90e058e0c623f770ee602ebab86e91303f08c90a (diff)
downloadmariadb-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.c3
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);
}