Browse Source

* Fix forgotten PChar->PAnsiChar

Michaël Van Canneyt 2 years ago
parent
commit
9a9a11ee5d
1 changed files with 1 additions and 1 deletions
  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);
     Move(p^, Result^, BufLen);
 end;
 end;
 
 
-function StrBufNew(p: PChar; BufLen: Cardinal): PChar;
+function StrBufNew(p: PAnsiChar; BufLen: Cardinal): PAnsiChar;
 begin
 begin
   Result := nil;
   Result := nil;
   if (p = nil) or (p^ = #0) then
   if (p = nil) or (p^ = #0) then