From f2716fa071e577142a27b186e841b406f02f3121 Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 21 Dec 2007 11:28:34 +0100 Subject: [PATCH] cast corrected sql/set_var.cc: typo :( --- sql/set_var.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sql/set_var.cc b/sql/set_var.cc index c78df4d8918..fe57b46745a 100644 --- a/sql/set_var.cc +++ b/sql/set_var.cc @@ -1622,8 +1622,8 @@ void sys_var_thd_ulong::set_default(THD *thd, enum_var_type type) bool not_used; /* We will not come here if option_limits is not set */ global_system_variables.*offset= - (ulonglong) getopt_ull_limit_value((ulong) option_limits->def_value, - option_limits, ¬_used); + (ulong) getopt_ull_limit_value((ulong) option_limits->def_value, + option_limits, ¬_used); } else thd->variables.*offset= global_system_variables.*offset;