diff --git a/source/dub/compilers/compiler.d b/source/dub/compilers/compiler.d index 2acc298..269a1cc 100644 --- a/source/dub/compilers/compiler.d +++ b/source/dub/compilers/compiler.d @@ -264,8 +264,8 @@ } version (Posix) if (status == -9) { - throw new Exception(format("%s failed with exit code %s. This may indicate that the process has run out of memory."), - args[0], status); + throw new Exception(format("%s failed with exit code %s. This may indicate that the process has run out of memory.", + args[0], status)); } enforce(status == 0, format("%s failed with exit code %s.", args[0], status)); }