Browse Source

* Fix forgotten PChar->PAnsiChar

Michaël Van Canneyt 2 năm trước cách đây
mục cha
commit
9a9a11ee5d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      packages/fcl-db/src/sqlite/customsqliteds.pas

+ 1 - 1
packages/fcl-db/src/sqlite/customsqliteds.pas

@@ -329,7 +329,7 @@ begin
     Move(p^, Result^, BufLen);
 end;
 
-function StrBufNew(p: PChar; BufLen: Cardinal): PChar;
+function StrBufNew(p: PAnsiChar; BufLen: Cardinal): PAnsiChar;
 begin
   Result := nil;
   if (p = nil) or (p^ = #0) then