From 9b09814b2a7b04105f784d7cb79836c057b92830 Mon Sep 17 00:00:00 2001 From: Jakub Filak Date: Tue, 4 Feb 2014 16:37:12 +0100 Subject: [PATCH 3/4] Return the right constant from Agent_OnLoad Related to rhbz#1049011 --- src/abrt-checker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/abrt-checker.c b/src/abrt-checker.c index f142d7e..e9caada 100644 --- a/src/abrt-checker.c +++ b/src/abrt-checker.c @@ -2930,7 +2930,7 @@ JNIEXPORT jint JNICALL Agent_OnLoad( /* we need to make sure the agent is initialized once */ if (already_called) { - return; + return JNI_OK; } already_called = 1; -- 1.8.3.1