fixed CE on 32-bit systems
This commit is contained in:
parent
a3209f79bd
commit
544b0698a7
1 changed files with 1 additions and 1 deletions
2
binlog.c
2
binlog.c
|
@ -803,7 +803,7 @@ void add_log_event (const int *data, int len) {
|
|||
int *end = in_end;
|
||||
replay_log_event ();
|
||||
if (rptr != wptr) {
|
||||
logprintf ("Unread %ld ints. Len = %d\n", wptr - rptr, len);
|
||||
logprintf ("Unread %lld ints. Len = %d\n", (long long)(wptr - rptr), len);
|
||||
assert (rptr == wptr);
|
||||
}
|
||||
if (binlog_enabled) {
|
||||
|
|
Loading…
Add table
Reference in a new issue