Commit dbe13c2b authored by marko's avatar marko

branches/zip: mlog_parse_index(): Correct a parameter comment

and add a const qualifier that was missing.
parent cab1802c
...@@ -237,8 +237,7 @@ mlog_parse_index( ...@@ -237,8 +237,7 @@ mlog_parse_index(
/* out: parsed record end, /* out: parsed record end,
NULL if not a complete record */ NULL if not a complete record */
byte* ptr, /* in: buffer */ byte* ptr, /* in: buffer */
byte* end_ptr,/* in: buffer end */ const byte* end_ptr,/* in: buffer end */
/* out: new value of log_ptr */
ibool comp, /* in: TRUE=compact record format */ ibool comp, /* in: TRUE=compact record format */
dict_index_t** index); /* out, own: dummy index */ dict_index_t** index); /* out, own: dummy index */
......
...@@ -541,8 +541,7 @@ mlog_parse_index( ...@@ -541,8 +541,7 @@ mlog_parse_index(
/* out: parsed record end, /* out: parsed record end,
NULL if not a complete record */ NULL if not a complete record */
byte* ptr, /* in: buffer */ byte* ptr, /* in: buffer */
byte* end_ptr,/* in: buffer end */ const byte* end_ptr,/* in: buffer end */
/* out: new value of log_ptr */
ibool comp, /* in: TRUE=compact record format */ ibool comp, /* in: TRUE=compact record format */
dict_index_t** index) /* out, own: dummy index */ dict_index_t** index) /* out, own: dummy index */
{ {
......
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