Commit 25121e07 authored by Vasil Dimov's avatar Vasil Dimov

Silence bogus compiler warning introduced in

marko.makela@oracle.com-20110616072721-8bo92ctixq6eqavr
parent 8f823499
...@@ -2063,7 +2063,7 @@ btr_compress( ...@@ -2063,7 +2063,7 @@ btr_compress(
rec_t* node_ptr; rec_t* node_ptr;
ulint data_size; ulint data_size;
ulint n_recs; ulint n_recs;
ulint nth_rec; ulint nth_rec = 0; /* remove bogus warning */
ulint max_ins_size; ulint max_ins_size;
ulint max_ins_size_reorg; ulint max_ins_size_reorg;
ulint comp; ulint comp;
......
...@@ -3132,7 +3132,7 @@ btr_compress( ...@@ -3132,7 +3132,7 @@ btr_compress(
ulint* offsets; ulint* offsets;
ulint data_size; ulint data_size;
ulint n_recs; ulint n_recs;
ulint nth_rec; ulint nth_rec = 0; /* remove bogus warning */
ulint max_ins_size; ulint max_ins_size;
ulint max_ins_size_reorg; ulint max_ins_size_reorg;
......
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