Browse Source

* fixed type in st_mysql_bind record (length: culong -> pculong)

git-svn-id: trunk@12626 -
ivost 16 năm trước cách đây
mục cha
commit
8e0ec83cf1
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      packages/mysql/src/mysql.inc

+ 1 - 1
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}