diff options
| author | ivost <ivost@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2009-01-29 11:24:16 +0000 |
|---|---|---|
| committer | ivost <ivost@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2009-01-29 11:24:16 +0000 |
| commit | cc8d9efca79db5379577dbccdf41cd123dfc3a31 (patch) | |
| tree | b9683bdd6f280c0983d689dfbb7741c1f242af2a /packages/mysql | |
| parent | 561e5b15b9866753b7d6c5291a8ec4d0e4d3d86a (diff) | |
| download | fpc-cc8d9efca79db5379577dbccdf41cd123dfc3a31.tar.gz | |
* fixed type in st_mysql_bind record (length: culong -> pculong)
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@12626 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'packages/mysql')
| -rw-r--r-- | packages/mysql/src/mysql.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/mysql/src/mysql.inc b/packages/mysql/src/mysql.inc index ab022245e6..a42b2d9777 100644 --- a/packages/mysql/src/mysql.inc +++ b/packages/mysql/src/mysql.inc @@ -1065,7 +1065,7 @@ uses } Pst_mysql_bind = ^st_mysql_bind; st_mysql_bind = record - length : culong; // output length pointer + length : pculong; // output length pointer is_null : Pmy_bool; // Pointer to null indicator buffer : pointer; // buffer to get/put data {$IFDEF mysql50} |
