Browse Source

* fixed range check error

git-svn-id: trunk@6822 -
Jonas Maebe 18 years ago
parent
commit
d66f35a384
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/extra/bfd/bfd.pas

+ 1 - 1
packages/extra/bfd/bfd.pas

@@ -1928,7 +1928,7 @@ is in practice already 0 *)
   ); { bfd_error }
 
 const
-  BFD_NO_MORE_SYMBOLS: symindex = not symindex(0);
+  BFD_NO_MORE_SYMBOLS: symindex = symindex(not symindex(0));
 
   bfd_mach_m68000 = 1;
   bfd_mach_m68008 = 2;