From da890fcb5a1025cff9fcc8c82d01e56fcb0d0c11 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 6 Nov 2024 11:28:44 +0100 Subject: [PATCH] PackageInfo.g: fix AvailabilityTest return value --- PackageInfo.g | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PackageInfo.g b/PackageInfo.g index 492f0e5..2e07417 100644 --- a/PackageInfo.g +++ b/PackageInfo.g @@ -104,7 +104,7 @@ AvailabilityTest := function() LogPackageLoadingMessage(PACKAGE_WARNING, ["the kernel module is not compiled, ", "the package cannot be loaded."]); - return fail; + return false; fi; return true; end,