Commit 1370fe0a authored by marko's avatar marko

branches/zip: Non-functional change: Add const qualifiers.

log_block_checksum_is_ok_or_old_format(), recv_sys_add_to_parsing_buf():
The log block is read-only.  Make it const.
parent da474c03
...@@ -669,9 +669,10 @@ static ...@@ -669,9 +669,10 @@ static
ibool ibool
log_block_checksum_is_ok_or_old_format( log_block_checksum_is_ok_or_old_format(
/*===================================*/ /*===================================*/
/* out: TRUE if ok, or if the log block may be in the /* out: TRUE if ok, or if the log
format of InnoDB version < 3.23.52 */ block may be in the format of InnoDB
byte* block) /* in: pointer to a log block */ version < 3.23.52 */
const byte* block) /* in: pointer to a log block */
{ {
#ifdef UNIV_LOG_DEBUG #ifdef UNIV_LOG_DEBUG
return(TRUE); return(TRUE);
...@@ -2153,7 +2154,7 @@ ibool ...@@ -2153,7 +2154,7 @@ ibool
recv_sys_add_to_parsing_buf( recv_sys_add_to_parsing_buf(
/*========================*/ /*========================*/
/* out: TRUE if more data added */ /* out: TRUE if more data added */
byte* log_block, /* in: log block */ const byte* log_block, /* in: log block */
ib_uint64_t scanned_lsn) /* in: lsn of how far we were able ib_uint64_t scanned_lsn) /* in: lsn of how far we were able
to find data in this log block */ to find data in this log block */
{ {
......
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