From 5937f444dd81c4130dfff20860101161d46dbfde Mon Sep 17 00:00:00 2001 From: Zoltan Varga Date: Mon, 24 Oct 2016 14:58:07 -0400 Subject: [PATCH] [runtime] Fix an assert message. --- mono/mini/aot-compiler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mono/mini/aot-compiler.c b/mono/mini/aot-compiler.c index 4cceee20fe5..10d8563de72 100644 --- a/mono/mini/aot-compiler.c +++ b/mono/mini/aot-compiler.c @@ -10500,7 +10500,7 @@ mono_compile_assembly (MonoAssembly *ass, guint32 opts, const char *aot_options) mini_llvm_init (); if (acfg->aot_opts.asm_only && !acfg->aot_opts.llvm_outfile) { - aot_printerrf (acfg, "Compiling with LLVM and the asm-only option requires the llvm-outputfile= option."); + aot_printerrf (acfg, "Compiling with LLVM and the asm-only option requires the llvm-outfile= option.\n"); return 1; } } -- 2.25.1