소스 검색

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

git-svn-id: trunk@12626 -
ivost 16 년 전
부모
커밋
8e0ec83cf1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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}