summary refs log tree commit diff stats
path: root/rod/magicsys.nim
diff options
context:
space:
mode:
Diffstat (limited to 'rod/magicsys.nim')
-rwxr-xr-xrod/magicsys.nim5
1 files changed, 2 insertions, 3 deletions
diff --git a/rod/magicsys.nim b/rod/magicsys.nim
index 58de1d795..1d758dcde 100755
--- a/rod/magicsys.nim
+++ b/rod/magicsys.nim
@@ -1,7 +1,7 @@
 #
 #
 #           The Nimrod Compiler
-#        (c) Copyright 2009 Andreas Rumpf
+#        (c) Copyright 2010 Andreas Rumpf
 #
 #    See the file "copying.txt", included in this
 #    distribution, for details about the copyright.
@@ -69,8 +69,7 @@ proc getSysType(kind: TTypeKind): PType =
   if result == nil: InternalError("type not found: " & $kind)
   
 proc getCompilerProc(name: string): PSym = 
-  var ident: PIdent
-  ident = getIdent(name, getNormalizedHash(name))
+  var ident = getIdent(name, getNormalizedHash(name))
   result = StrTableGet(compilerprocs, ident)
   if result == nil: 
     result = StrTableGet(rodCompilerProcs, ident)