summary refs log tree commit diff stats
path: root/compiler/extccomp.nim
diff options
context:
space:
mode:
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) =