Explorar el Código

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

git-svn-id: trunk@30915 -
Károly Balogh hace 10 años
padre
commit
dfd251f586
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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;