Explorar el Código

* fixed cardinal-longint error

peter hace 22 años
padre
commit
6c0f8c98f4
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      tests/webtbs/tw2729.pp

+ 2 - 2
tests/webtbs/tw2729.pp

@@ -13,7 +13,7 @@ type
 
 procedure tbla.doset;
   begin
-     l:=$deadbeaf;
+     l:=$12345678;
   end;
 
 function tbla.get : longint;
@@ -33,7 +33,7 @@ var
 begin
   bla:=tbla.bla;
   bla.doset;
-  if bla.get<>$deadbeaf then
+  if bla.get<>$12345678 then
     begin
       writeln('Problem');
       halt(1);