diff options
author | Araq <rumpf_a@web.de> | 2014-01-11 21:56:05 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-01-11 21:56:05 +0100 |
commit | 346443d1b552574c1f259cd9e6080c2d0063fa9c (patch) | |
tree | 0f319406b8312ed325bbb1ef1ea5b7ef74662e07 /lib/wrappers | |
parent | 437cfa73abd8fdf878cc2af2c44acbc4b6ec3a56 (diff) | |
download | Nim-346443d1b552574c1f259cd9e6080c2d0063fa9c.tar.gz |
case consistency improvements
Diffstat (limited to 'lib/wrappers')
-rw-r--r-- | lib/wrappers/mysql.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/wrappers/mysql.nim b/lib/wrappers/mysql.nim index 5a8d4c98b..84d70287f 100644 --- a/lib/wrappers/mysql.nim +++ b/lib/wrappers/mysql.nim @@ -19,7 +19,7 @@ when defined(Windows): type my_bool* = bool Pmy_bool* = ptr my_bool - PVIO* = Pointer + PVIO* = pointer Pgptr* = ptr gptr gptr* = cstring Pmy_socket* = ptr my_socket @@ -645,7 +645,7 @@ type next_slave*: Pst_mysql last_used_slave*: Pst_mysql # needed for round-robin slave pick last_used_con*: Pst_mysql # needed for send/read/store/use result to work correctly with replication - stmts*: Pointer # was PList, list of all statements + stmts*: pointer # was PList, list of all statements methods*: Pst_mysql_methods thd*: pointer # Points to boolean flag in MYSQL_RES or MYSQL_STMT. We set this flag # from mysql_stmt_close if close had to cancel result set of this object. |