summaryrefslogtreecommitdiff
path: root/src/common/sql.h
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2016-02-19 21:40:53 +0100
committerHaru <haru@dotalux.com>2016-03-20 18:32:07 +0100
commit127093b5327de343f4ae3f7c8752c465eea911c8 (patch)
treeaad51f53ba9bb8b99aa55a902ab1353a1937b403 /src/common/sql.h
parentf4fced20c769ccee7f808531221dda481f7bbcca (diff)
downloadhercules-127093b5327de343f4ae3f7c8752c465eea911c8.tar.gz
hercules-127093b5327de343f4ae3f7c8752c465eea911c8.tar.bz2
hercules-127093b5327de343f4ae3f7c8752c465eea911c8.tar.xz
hercules-127093b5327de343f4ae3f7c8752c465eea911c8.zip
Changed buffer argument of SQL->StmtBindParam() to const
Parameters are supposed to be read-only Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/common/sql.h')
-rw-r--r--src/common/sql.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/sql.h b/src/common/sql.h
index 3619895b1..07be829fc 100644
--- a/src/common/sql.h
+++ b/src/common/sql.h
@@ -209,7 +209,7 @@ struct sql_interface {
/// All parameters should have bindings.
///
/// @return SQL_SUCCESS or SQL_ERROR
- int (*StmtBindParam)(struct SqlStmt *self, size_t idx, enum SqlDataType buffer_type, void *buffer, size_t buffer_len);
+ int (*StmtBindParam)(struct SqlStmt *self, size_t idx, enum SqlDataType buffer_type, const void *buffer, size_t buffer_len);
/// Executes the prepared statement.
/// Any previous result is freed and all column bindings are removed.