From cd644907e4b0c35b5b194e12dd93b45b5064e70c Mon Sep 17 00:00:00 2001 From: Richard Hughes Date: Fri, 1 Nov 2019 12:35:17 +0000 Subject: [PATCH] trivial: Fix a typo that means that UEFI results were never cleared --- src/fu-plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fu-plugin.c b/src/fu-plugin.c index 2dee097cf..1374a0dca 100644 --- a/src/fu-plugin.c +++ b/src/fu-plugin.c @@ -1987,7 +1987,7 @@ fu_plugin_runner_clear_results (FuPlugin *self, FuDevice *device, GError **error return TRUE; /* optional */ - g_module_symbol (priv->module, "fu_plugin_get_results", (gpointer *) &func); + g_module_symbol (priv->module, "fu_plugin_clear_results", (gpointer *) &func); if (func == NULL) return TRUE; g_debug ("performing clear_result() on %s", priv->name);