summaryrefslogtreecommitdiff
path: root/sql/opt_range.cc
diff options
context:
space:
mode:
authorholyfoot/hf@mysql.com/hfmain.(none) <>2007-10-23 15:34:10 +0500
committerholyfoot/hf@mysql.com/hfmain.(none) <>2007-10-23 15:34:10 +0500
commit36092b373aff0d3192422baa9458ee5babc7811b (patch)
tree6ac3a77f7b8b3d6d618d58a514106d2a6f9a7dd4 /sql/opt_range.cc
parent9f323e1a3a9d7ce57ad9adff4c4b2d7a58913136 (diff)
downloadmariadb-git-36092b373aff0d3192422baa9458ee5babc7811b.tar.gz
type conversion fixed to get rid of warnings
Diffstat (limited to 'sql/opt_range.cc')
-rw-r--r--sql/opt_range.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/opt_range.cc b/sql/opt_range.cc
index 86900de8adb..a40ad17bc59 100644
--- a/sql/opt_range.cc
+++ b/sql/opt_range.cc
@@ -8427,9 +8427,9 @@ void cost_group_min_max(TABLE* table, KEY *index_info, uint used_key_parts,
*records= num_groups;
DBUG_PRINT("info",
- ("table rows: %u keys/block: %u keys/group: %u result rows: %lu blocks: %u",
- table_records, keys_per_block, keys_per_group, (ulong) *records,
- num_blocks));
+ ("table rows: %lu keys/block: %u keys/group: %u result rows: %lu blocks: %u",
+ (ulong)table_records, keys_per_block, keys_per_group,
+ (ulong) *records, num_blocks));
DBUG_VOID_RETURN;
}