diff options
author | Mikael Ronstrom <mikael@mysql.com> | 2008-10-17 13:43:34 +0200 |
---|---|---|
committer | Mikael Ronstrom <mikael@mysql.com> | 2008-10-17 13:43:34 +0200 |
commit | 94e46a01711ca420d3bb37ff3d4b97eb92d04a8d (patch) | |
tree | 039f3c1d74b8bb00e7a0ccc753ab9d9c584f5c8a /storage/innobase/os/os0file.c | |
parent | 27046be12f2810f22dfe695cb54d70cde497978b (diff) | |
download | mariadb-git-94e46a01711ca420d3bb37ff3d4b97eb92d04a8d.tar.gz |
Fixed compiler warnings
Diffstat (limited to 'storage/innobase/os/os0file.c')
-rw-r--r-- | storage/innobase/os/os0file.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/os/os0file.c b/storage/innobase/os/os0file.c index 88884dcb2fd..2907fddc33b 100644 --- a/storage/innobase/os/os0file.c +++ b/storage/innobase/os/os0file.c @@ -4403,9 +4403,9 @@ loop: putc('\n', file); fprintf(file, "Summary of background IO slot status: %lu issued, " - "%lu done, %lu claimed, sleep set %u\n", + "%lu done, %lu claimed, sleep set %d\n", num_issued, num_done, num_claimed, - os_aio_recommend_sleep_for_read_threads); + (int)os_aio_recommend_sleep_for_read_threads); putc('\n', file); current_time = time(NULL); |