From 500b4c819d146e955f58648630f0afd930e1b814 Mon Sep 17 00:00:00 2001 From: Michael Widenius Date: Wed, 4 May 2011 11:28:02 +0300 Subject: Fixed compiler warning --- storage/xtradb/fil/fil0fil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'storage/xtradb') diff --git a/storage/xtradb/fil/fil0fil.c b/storage/xtradb/fil/fil0fil.c index 4ea3232eefb..1cb8d565119 100644 --- a/storage/xtradb/fil/fil0fil.c +++ b/storage/xtradb/fil/fil0fil.c @@ -3786,7 +3786,7 @@ fil_load_single_table_tablespace( size = (((ib_uint64_t)size_high) << 32) + (ib_uint64_t)size_low; #ifndef UNIV_HOTBACKUP - if (size < FIL_IBD_FILE_INITIAL_SIZE * (lint)UNIV_PAGE_SIZE) { + if (size < (ib_uint64_t) (FIL_IBD_FILE_INITIAL_SIZE * (lint)UNIV_PAGE_SIZE)) { fprintf(stderr, "InnoDB: Error: the size of single-table tablespace" " file %s\n" -- cgit v1.2.1