Re: [fpc-devel] Porting from Delphi to FPC - challenge #2.

2018-10-01 Thread Ozz Nixon
If I type Cast TmpBugStr as PChar, then the error gets weird: Error: Incompatible types: got "SYSTEM.PChar" expected "SYSTEM.PChar" On Mon, Oct 1, 2018 at 8:20 AM Ozz Nixon wrote: > See Below - pressed enter too fast: > > > On Mon, Oct 1, 2018 at 8:18 AM Ozz Nixon wrote: > >> Type >>

[fpc-devel] Porting from Delphi to FPC - challenge #2.

2018-10-01 Thread Ozz Nixon
Type Line:Array[0..127] of Char; Var TmpBugStr:Line; {later in the code} Const TempString : PChar = TmpBugStr; ___ fpc-devel maillist - fpc-devel@lists.freepascal.org http://lists.freepascal.org/cgi-bin/mailman/listinfo/fpc-devel

Re: [fpc-devel] Porting from Delphi to FPC - challenge #2.

2018-10-01 Thread Ozz Nixon
See Below - pressed enter too fast: On Mon, Oct 1, 2018 at 8:18 AM Ozz Nixon wrote: > Type >Line:Array[0..127] of Char; > > Var >TmpBugStr:Line; > > {later in the code} > Const >TempString : PChar = TmpBugStr; > > Error: Incompatible types: got "Line" expected "PChar Pointing to