summaryrefslogtreecommitdiff
path: root/client/mysqlbinlog.cc
diff options
context:
space:
mode:
authorjani@ua141d10.elisa.omakaista.fi <>2007-03-22 20:32:07 +0200
committerjani@ua141d10.elisa.omakaista.fi <>2007-03-22 20:32:07 +0200
commit5c542a4656cb37c042363dc5de7acab6b1470660 (patch)
treeef00f793c494b2bc5628499d60a41d7f7d70aa76 /client/mysqlbinlog.cc
parente25ea78fd443de516253af55bd5355001c343248 (diff)
downloadmariadb-git-5c542a4656cb37c042363dc5de7acab6b1470660.tar.gz
Fixed compiler warnings.
Diffstat (limited to 'client/mysqlbinlog.cc')
-rw-r--r--client/mysqlbinlog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/mysqlbinlog.cc b/client/mysqlbinlog.cc
index 77240a2c750..3f3771e6441 100644
--- a/client/mysqlbinlog.cc
+++ b/client/mysqlbinlog.cc
@@ -834,7 +834,7 @@ static int dump_remote_log_entries(const char* logname)
}
if (len < 8 && net->read_pos[0] == 254)
break; // end of data
- DBUG_PRINT("info",( "len= %u, net->read_pos[5] = %d\n",
+ DBUG_PRINT("info",( "len: %lu net->read_pos[5]: %d\n",
len, net->read_pos[5]));
Log_event *ev = Log_event::read_log_event((const char*) net->read_pos + 1 ,
len - 1, &error_msg, old_format);