Commit 5a720d4e authored by unknown's avatar unknown

fix for compile error (Windows)

parent 79953d9c
...@@ -1318,7 +1318,7 @@ class Item_func_sp :public Item_func ...@@ -1318,7 +1318,7 @@ class Item_func_sp :public Item_func
longlong val_int() longlong val_int()
{ {
if (execute(&result_field)) if (execute(&result_field))
return 0LL; return (longlong) 0;
return result_field->val_int(); return result_field->val_int();
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment