summaryrefslogtreecommitdiff
path: root/sql/protocol.h
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2003-08-19 16:00:12 +0300
committermonty@mashka.mysql.fi <>2003-08-19 16:00:12 +0300
commiteb6458cb18ec31e2be09cf6555a24ef3545c4fa0 (patch)
tree7e42515465680bf9479f44de0c710044aa122610 /sql/protocol.h
parent10c4acfb4f6f4423040bf31332a0542cc5f7d6e5 (diff)
downloadmariadb-git-eb6458cb18ec31e2be09cf6555a24ef3545c4fa0.tar.gz
After merge fixes + bugs from last merge
Diffstat (limited to 'sql/protocol.h')
-rw-r--r--sql/protocol.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/protocol.h b/sql/protocol.h
index ffd61b3e848..05aee12d3d9 100644
--- a/sql/protocol.h
+++ b/sql/protocol.h
@@ -61,7 +61,7 @@ public:
inline bool store(ulonglong from)
{ return store_longlong((longlong) from, 1); }
inline bool store(String *str)
- { return store(str->c_ptr(),str->length(),str->charset()); }
+ { return store((char*) str->ptr(), str->length(), str->charset()); }
virtual bool prepare_for_send(List<Item> *item_list)
{