summary refs log tree commit diff stats
path: root/compiler/extccomp.nim
diff options
context:
space:
mode:
authorpatrick dw <algorithicimperative@gmail.com>2015-06-19 01:45:12 -0500
committerpatrick dw <algorithicimperative@gmail.com>2015-06-19 01:45:12 -0500
commit2a0f7b5de72dc1d8c1018bb60630764f765376bb (patch)
tree3705c0a33829ec6c1343c40ca390dcebd0324d7b /compiler/extccomp.nim
parent4e275f2a1a1995d6b7a2bc461b96d804368c0931 (diff)
downloadNim-2a0f7b5de72dc1d8c1018bb60630764f765376bb.tar.gz
renamed writeln to writeLine in compiler
Diffstat (limited to 'compiler/extccomp.nim')
-rw-r--r--compiler/extccomp.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/extccomp.nim b/compiler/extccomp.nim
index 38427b367..2c6e5294f 100644
--- a/compiler/extccomp.nim
+++ b/compiler/extccomp.nim
@@ -596,7 +596,7 @@ proc externalFileChanged(filename: string): bool =
     result = true
   if result:
     if open(f, crcFile, fmWrite):
-      f.writeln($currentCrc)
+      f.writeLine($currentCrc)
       close(f)
 
 proc addExternalFileToCompile*(filename: string) =