diff options
author | Sergey Vojtovich <svoj@sun.com> | 2009-11-03 14:00:05 +0400 |
---|---|---|
committer | Sergey Vojtovich <svoj@sun.com> | 2009-11-03 14:00:05 +0400 |
commit | ed612249c5b75cb016770aeb8b55a84faac10f14 (patch) | |
tree | 6ec605530980494029cc314473eb464c0761a8c2 /storage | |
parent | 5bd0efc83dc13945f072c6d252f32c63a8878836 (diff) | |
download | mariadb-git-ed612249c5b75cb016770aeb8b55a84faac10f14.tar.gz |
Applying InnoDB plugin snapshot
Detailed revision comments:
r6049 | vasil | 2009-10-09 19:05:26 +0300 (Fri, 09 Oct 2009) | 7 lines
branches/zip:
Fix compilation warning in Hot Backup:
innodb/fil/fil0fil.c: In function 'fil_load_single_table_tablespace':
innodb/fil/fil0fil.c:3253: warning: format '%lld' expects type 'long long int', but argument 6 has type 'ib_int64_t'
Diffstat (limited to 'storage')
-rw-r--r-- | storage/innodb_plugin/fil/fil0fil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/innodb_plugin/fil/fil0fil.c b/storage/innodb_plugin/fil/fil0fil.c index df6dad86990..3342d25763c 100644 --- a/storage/innodb_plugin/fil/fil0fil.c +++ b/storage/innodb_plugin/fil/fil0fil.c @@ -3244,7 +3244,7 @@ fil_load_single_table_tablespace( fprintf(stderr, "InnoDB: Renaming tablespace %s of id %lu,\n" "InnoDB: to %s_ibbackup_old_vers_<timestamp>\n" - "InnoDB: because its size %lld is too small" + "InnoDB: because its size %" PRId64 " is too small" " (< 4 pages 16 kB each),\n" "InnoDB: or the space id in the file header" " is not sensible.\n" |