Skip to content

Commit

Permalink
Fix a compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-m committed Apr 6, 2018
1 parent 81075d4 commit 8325d71
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion storage/innobase/log/log0log.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1445,7 +1445,8 @@ log_write_up_to(

if (srv_shutdown_state != SRV_SHUTDOWN_NONE) {
service_manager_extend_timeout(INNODB_EXTEND_TIMEOUT_INTERVAL,
"log write up to: " LSNPF, lsn);
"log write up to: " LSN_PF,
lsn);
}

loop:
Expand Down
3 changes: 2 additions & 1 deletion storage/xtradb/log/log0log.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1563,7 +1563,8 @@ log_write_up_to(

if (srv_shutdown_state != SRV_SHUTDOWN_NONE) {
service_manager_extend_timeout(INNODB_EXTEND_TIMEOUT_INTERVAL,
"log write up to: " LSNPF, lsn);
"log write up to: " LSN_PF,
lsn);
}

loop:
Expand Down

0 comments on commit 8325d71

Please sign in to comment.