diff options
Diffstat (limited to 'compiler/reorder.nim')
-rw-r--r-- | compiler/reorder.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/reorder.nim b/compiler/reorder.nim index 09168ae6a..0fb006c91 100644 --- a/compiler/reorder.nim +++ b/compiler/reorder.nim @@ -154,7 +154,7 @@ proc expandIncludes(graph: ModuleGraph, module: PSym, n: PNode, if f != InvalidFileIDX: if containsOrIncl(includedFiles, f.int): localError(graph.config, a.info, "recursive dependency: '$1'" % - toFilename(graph.config, f)) + toMsgFilename(graph.config, f)) else: let nn = includeModule(graph, module, f) let nnn = expandIncludes(graph, module, nn, modulePath, |