[Pkg-mono-svn-commits] [mono] 01/01: Fix compilation of AOT-less Mono

Jo Shields directhex at moszumanska.debian.org
Fri Oct 7 15:13:05 UTC 2016


This is an automated email from the git hooks/post-receive script.

directhex pushed a commit to branch master-patches/fix-aotless-runtime
in repository mono.

commit a7a9773779ed4c0350cd13314fb322949086e4c3
Author: Łukasz Domeradzki <JustArchi at users.noreply.github.com>
Date:   Fri Jul 15 05:23:53 2016 +0200

    Fix compilation of AOT-less Mono
    
    ```
    aot-runtime.c:5838:1: error: expected identifier or ‘(’ before ‘{’ token
     {
     ^
    ```
---
 mono/mini/aot-runtime.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mono/mini/aot-runtime.c b/mono/mini/aot-runtime.c
index 013d442..f1499dd 100644
--- a/mono/mini/aot-runtime.c
+++ b/mono/mini/aot-runtime.c
@@ -5844,7 +5844,7 @@ mono_aot_get_method (MonoDomain *domain, MonoMethod *method)
 
 gpointer
 mono_aot_get_method_checked (MonoDomain *domain,
-							 MonoMethod *method, MonoError *error);
+							 MonoMethod *method, MonoError *error)
 {
 	mono_error_init (error);
 	return NULL;

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mono/packages/mono.git



More information about the Pkg-mono-svn-commits mailing list