Browse Source

pkgutil.pas:
* insert_export: directly report the symbol type instead of its ordinal to ease finding of problems

git-svn-id: branches/svenbarth/packages@32460 -

svenbarth 9 years ago
parent
commit
c22f4aa956
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/pkgutil.pas

+ 1 - 1
compiler/pkgutil.pas

@@ -176,7 +176,7 @@ implementation
           end;
         else
           begin
-            writeln('unknown: ',ord(TSym(sym).typ));
+            writeln('unknown: ',TSym(sym).typ);
           end;
       end;
     end;