Commit f1706a13 authored by marko's avatar marko

branches/zip: rec_get_offsets_reverse(): Fix the type of the parameter

node_ptr.
parent 2a77ce27
...@@ -362,7 +362,7 @@ rec_get_offsets_reverse( ...@@ -362,7 +362,7 @@ rec_get_offsets_reverse(
in reverse order, excluding the fixed-size in reverse order, excluding the fixed-size
REC_N_NEW_EXTRA_BYTES */ REC_N_NEW_EXTRA_BYTES */
dict_index_t* index, /* in: record descriptor */ dict_index_t* index, /* in: record descriptor */
ibool node_ptr,/* in: TRUE=node pointer, FALSE=leaf node */ ulint node_ptr,/* in: nonzero=node pointer, 0=leaf node */
ulint* offsets);/* in/out: array consisting of offsets[0] ulint* offsets);/* in/out: array consisting of offsets[0]
allocated elements */ allocated elements */
......
...@@ -540,7 +540,7 @@ rec_get_offsets_reverse( ...@@ -540,7 +540,7 @@ rec_get_offsets_reverse(
in reverse order, excluding the fixed-size in reverse order, excluding the fixed-size
REC_N_NEW_EXTRA_BYTES */ REC_N_NEW_EXTRA_BYTES */
dict_index_t* index, /* in: record descriptor */ dict_index_t* index, /* in: record descriptor */
ibool node_ptr,/* in: TRUE=node pointer, FALSE=leaf node */ ulint node_ptr,/* in: nonzero=node pointer, 0=leaf node */
ulint* offsets)/* in/out: array consisting of offsets[0] ulint* offsets)/* in/out: array consisting of offsets[0]
allocated elements */ allocated elements */
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment