[runtime] Fix AOT log message
authorAndrea Canciani <ranma42@gmail.com>
Fri, 1 Nov 2013 10:38:51 +0000 (11:38 +0100)
committerAndrea Canciani <ranma42@gmail.com>
Fri, 1 Nov 2013 10:38:51 +0000 (11:38 +0100)
In 72ca429d6ced5d0a5cf9e517e19aa2c49405f4ed the message format was
refactored and an additional '%s' format specifier was left over.

mono/mini/aot-runtime.c

index b81c137be536ee71d28c09f484ac2cfa2852a813..19ec1564a3e06b1d7d106fb49563ea9203ceaf0e 100644 (file)
@@ -1597,7 +1597,7 @@ load_aot_module (MonoAssembly *assembly, gpointer user_data)
                        sofile = mono_dl_open (aot_name, MONO_DL_LAZY, &err);
 
                        if (!sofile) {
-                               mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT module '%s' not found %s: %s\n", aot_name, err);
+                               mono_trace (G_LOG_LEVEL_INFO, MONO_TRACE_AOT, "AOT module '%s' not found: %s\n", aot_name, err);
                                g_free (err);
                        }
                }