summaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorMichael Widenius <monty@askmonty.org>2010-08-26 16:20:27 +0300
committerMichael Widenius <monty@askmonty.org>2010-08-26 16:20:27 +0300
commit2b5f744ca48113207e97fd335acd68a61bb5b8a4 (patch)
treeb51414f2bf0bbf4c669e45e3d8da03c047107d6b /sql
parent6f1caf29d4db3a8c91ac73d3f0d4a1be7977e795 (diff)
downloadmariadb-git-2b5f744ca48113207e97fd335acd68a61bb5b8a4.tar.gz
Fixed compiler warnings
sql/item.h: Fixed wrong declaration storage/sphinx/ha_sphinx.h: Fixed arguments to read_time() storage/sphinx/snippets_udf.cc: Include mysql headerfile first to avoid compiler warnings
Diffstat (limited to 'sql')
-rw-r--r--sql/item.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/item.h b/sql/item.h
index ec98ed44229..94a25d7eaea 100644
--- a/sql/item.h
+++ b/sql/item.h
@@ -1887,7 +1887,7 @@ public:
{ return (uint)(max_length - test(value < 0)); }
bool eq(const Item *, bool binary_cmp) const;
bool check_partition_func_processor(uchar *bool_arg) { return FALSE;}
- bool check_vcol_func_processor(uchar arg) { return FALSE;}
+ bool check_vcol_func_processor(uchar *arg) { return FALSE;}
};