diff options
author | unknown <monty@donna.mysql.fi> | 2001-04-29 16:07:40 +0300 |
---|---|---|
committer | unknown <monty@donna.mysql.fi> | 2001-04-29 16:07:40 +0300 |
commit | eaa2350748beea0aa28bef227e62f4f00377247c (patch) | |
tree | 36a0842f7006e1ed083c85dcac3b3ecc00646bfd /sql/log_event.cc | |
parent | 651030923462ac4620dbf0f1db1ca213b99aff25 (diff) | |
download | mariadb-git-eaa2350748beea0aa28bef227e62f4f00377247c.tar.gz |
Cleanup
sql/log_event.cc:
cleanup
sql/mysqld.cc:
Portability fix for AIX 4.2
Fix for services on Windows
Diffstat (limited to 'sql/log_event.cc')
-rw-r--r-- | sql/log_event.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/log_event.cc b/sql/log_event.cc index 5fc5f7f0e62..0cfdb2b3df7 100644 --- a/sql/log_event.cc +++ b/sql/log_event.cc @@ -694,7 +694,7 @@ void Load_log_event::print(FILE* file, bool short_form, char* last_db) } if((int)skip_lines > 0) - fprintf(file, " IGNORE %d LINES ", skip_lines); + fprintf(file, " IGNORE %ld LINES ", (long) skip_lines); if (num_fields) { |