From acfd7fbf87263989ceeddfe3225858566a84caf5 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 30 Aug 2004 11:09:56 +0200 Subject: Fixed return type warning in sql/item.cc. sql/item.cc: Fixed return type warning. --- sql/item.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sql') diff --git a/sql/item.cc b/sql/item.cc index 138ab384caf..517309acd2b 100644 --- a/sql/item.cc +++ b/sql/item.cc @@ -2182,7 +2182,7 @@ longlong Item_ref::val_int_result() if (result_field) { if ((null_value= result_field->is_null())) - return 0.0; + return 0; return result_field->val_int(); } return val_int(); -- cgit v1.2.1