From 6e140c1ad20041d8f69b2183b4da3cc27f4a46f1 Mon Sep 17 00:00:00 2001 From: calvin Date: Tue, 14 Oct 2008 15:19:41 +0000 Subject: [PATCH] branches/zip: fix compiler warning Change the definition of add_on from ulint to ullint, to eliminate the warning in .\btr\btr0cur.c: conversion from 'ullint' to 'ulint', possible loss of data Approved by: Heikki (on IM) --- btr/btr0cur.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/btr/btr0cur.c b/btr/btr0cur.c index 5550e40c9cf..c13e049b71a 100644 --- a/btr/btr0cur.c +++ b/btr/btr0cur.c @@ -3164,7 +3164,7 @@ btr_estimate_number_of_different_key_vals( ulint total_external_size = 0; ulint i; ulint j; - ulint add_on; + ullint add_on; mtr_t mtr; mem_heap_t* heap = NULL; ulint offsets_rec_[REC_OFFS_NORMAL_SIZE];