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

and add a const qualifier that was missing.
This commit is contained in:
marko 2009-05-20 07:11:58 +00:00
parent cab1802cee
commit dbe13c2ba2
2 changed files with 2 additions and 4 deletions

View file

@ -237,8 +237,7 @@ mlog_parse_index(
/* out: parsed record end,
NULL if not a complete record */
byte* ptr, /* in: buffer */
byte* end_ptr,/* in: buffer end */
/* out: new value of log_ptr */
const byte* end_ptr,/* in: buffer end */
ibool comp, /* in: TRUE=compact record format */
dict_index_t** index); /* out, own: dummy index */

View file

@ -541,8 +541,7 @@ mlog_parse_index(
/* out: parsed record end,
NULL if not a complete record */
byte* ptr, /* in: buffer */
byte* end_ptr,/* in: buffer end */
/* out: new value of log_ptr */
const byte* end_ptr,/* in: buffer end */
ibool comp, /* in: TRUE=compact record format */
dict_index_t** index) /* out, own: dummy index */
{