diff options
author | konstantin@mysql.com <> | 2004-06-25 17:04:33 +0400 |
---|---|---|
committer | konstantin@mysql.com <> | 2004-06-25 17:04:33 +0400 |
commit | 354e2ba67b092beee0654ae30ba1361d3627b88f (patch) | |
tree | 291864232f96cd8c3415b3469a877aa98d416cc4 /include | |
parent | 6e1eb6a78c4ff537efc0474a2d3179821f9101e5 (diff) | |
download | mariadb-git-354e2ba67b092beee0654ae30ba1361d3627b88f.tar.gz |
Type of MYSQL_BIND::buffer changed to void *
Diffstat (limited to 'include')
-rw-r--r-- | include/mysql.h | 2 |
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 */ |