Browse Source

morphunits: fixed TMemList declaration in exec, to match AROS, Amiga/m68k, and reality

git-svn-id: trunk@30915 -
Károly Balogh 10 years ago
parent
commit
dfd251f586
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/morphunits/src/exec.pas

+ 1 - 1
packages/morphunits/src/exec.pas

@@ -555,7 +555,7 @@ type
   TMemList = packed record
     ml_Node      : TNode;
     ml_NumEntries: Word;
-    ml_ME        : PMemEntry;
+    ml_ME        : array [0..0] of TMemEntry;
   end;