Browse Source

* fixed test

git-svn-id: trunk@4882 -
Jonas Maebe 19 years ago
parent
commit
b02495645f
1 changed files with 1 additions and 2 deletions
  1. 1 2
      tests/tbf/tb0183.pp

+ 1 - 2
tests/tbf/tb0183.pp

@@ -7,6 +7,5 @@ var
   i: integer;
   p: pointer;
 begin
-  p := pointer(@i)+5;
-  i := integer(@i-p);
+  p := @i+5;
 end.