trivial: Fix a typo that means that UEFI results were never cleared

This commit is contained in:
Richard Hughes 2019-11-01 12:35:17 +00:00 committed by Mario Limonciello
parent 0bbef29d3e
commit cd644907e4

View File

@ -1987,7 +1987,7 @@ fu_plugin_runner_clear_results (FuPlugin *self, FuDevice *device, GError **error
return TRUE; return TRUE;
/* optional */ /* 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) if (func == NULL)
return TRUE; return TRUE;
g_debug ("performing clear_result() on %s", priv->name); g_debug ("performing clear_result() on %s", priv->name);