diff options
author | Mikael Ronstrom <mikael@mysql.com> | 2008-10-17 12:01:14 +0200 |
---|---|---|
committer | Mikael Ronstrom <mikael@mysql.com> | 2008-10-17 12:01:14 +0200 |
commit | 27046be12f2810f22dfe695cb54d70cde497978b (patch) | |
tree | e6c9c380cd95ff609be22772b5b0a096e77371a2 /storage/innobase/srv/srv0start.c | |
parent | b907184e26c0191e192634dfe6026e5b983096c2 (diff) | |
download | mariadb-git-27046be12f2810f22dfe695cb54d70cde497978b.tar.gz |
Fixed a number of compiler issues and attempted a fix for
Windows compilation error.
Diffstat (limited to 'storage/innobase/srv/srv0start.c')
-rw-r--r-- | storage/innobase/srv/srv0start.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/innobase/srv/srv0start.c b/storage/innobase/srv/srv0start.c index aa6fd1b9e9a..86cbf15a5df 100644 --- a/storage/innobase/srv/srv0start.c +++ b/storage/innobase/srv/srv0start.c @@ -1251,7 +1251,7 @@ innobase_start_or_create_for_mysql(void) /* Restrict the maximum number of file i/o threads */ if ((srv_n_read_io_threads + srv_n_write_io_threads) > SRV_MAX_N_IO_THREADS) { fprintf(stderr, - "InnoDB: requested too many read(%d) or write(%d) IO threads, max is %d\n", + "InnoDB: requested too many read(%u) or write(%u) IO threads, max is %d\n", srv_n_read_io_threads, srv_n_write_io_threads, SRV_MAX_N_IO_THREADS); return(DB_ERROR); } @@ -1272,7 +1272,7 @@ innobase_start_or_create_for_mysql(void) if (n_threads > SRV_MAX_N_IO_THREADS) { fprintf(stderr, - "InnoDB: requested too many IO threads(%d), max is %d\n", + "InnoDB: requested too many IO threads(%u), max is %d\n", n_threads, SRV_MAX_N_IO_THREADS); return(DB_ERROR); } |