summaryrefslogtreecommitdiff
path: root/sql/item_cmpfunc.h
diff options
context:
space:
mode:
authorunknown <gkodinov/kgeorge@magare.gmz>2007-03-02 19:32:46 +0200
committerunknown <gkodinov/kgeorge@magare.gmz>2007-03-02 19:32:46 +0200
commit476f91b50c9e8993920f4aafbf16a447e65689cb (patch)
treed418549b3cb12f65b38d90c320187000c25bb536 /sql/item_cmpfunc.h
parent2ebd43960b4dc8612c0c39b324bab40dc3ae5eec (diff)
downloadmariadb-git-476f91b50c9e8993920f4aafbf16a447e65689cb.tar.gz
fixed win32 warnings
Diffstat (limited to 'sql/item_cmpfunc.h')
-rw-r--r--sql/item_cmpfunc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item_cmpfunc.h b/sql/item_cmpfunc.h
index b0d85ba92a1..e50e744668a 100644
--- a/sql/item_cmpfunc.h
+++ b/sql/item_cmpfunc.h
@@ -760,7 +760,7 @@ public:
void value_to_item(uint pos, Item *item)
{
((Item_int*) item)->value= ((packed_longlong*) base)[pos].val;
- ((Item_int*) item)->unsigned_flag=
+ ((Item_int*) item)->unsigned_flag= (my_bool)
((packed_longlong*) base)[pos].unsigned_flag;
}