summaryrefslogtreecommitdiff
path: root/include/mysql.h
diff options
context:
space:
mode:
authorunknown <konstantin@mysql.com>2004-06-25 17:04:33 +0400
committerunknown <konstantin@mysql.com>2004-06-25 17:04:33 +0400
commit13b09b10df9a2105a245b3fcad5977c108119c68 (patch)
tree291864232f96cd8c3415b3469a877aa98d416cc4 /include/mysql.h
parent7e75366b1225792de08ff7c4f8e95aea13f090c2 (diff)
downloadmariadb-git-13b09b10df9a2105a245b3fcad5977c108119c68.tar.gz
Type of MYSQL_BIND::buffer changed to void *
Diffstat (limited to 'include/mysql.h')
-rw-r--r--include/mysql.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql.h b/include/mysql.h
index 12220c259b7..9eedb849ec4 100644
--- a/include/mysql.h
+++ b/include/mysql.h
@@ -540,7 +540,7 @@ typedef struct st_mysql_bind
{
unsigned long *length; /* output length pointer */
my_bool *is_null; /* Pointer to null indicators */
- char *buffer; /* buffer to get/put data */
+ void *buffer; /* buffer to get/put data */
enum enum_field_types buffer_type; /* buffer type */
unsigned long buffer_length; /* buffer length, must be set for str/binary */