Eric Betts 8 kuukautta sitten
vanhempi
commit
2e5ae98c98
1 muutettua tiedostoa jossa 5 lisäystä ja 3 poistoa
  1. 5 3
      picopass.c

+ 5 - 3
picopass.c

@@ -99,11 +99,13 @@ Picopass* picopass_alloc() {
     picopass->plugin_wiegand_manager =
     picopass->plugin_wiegand_manager =
         plugin_manager_alloc(PLUGIN_APP_ID, PLUGIN_API_VERSION, firmware_api_interface);
         plugin_manager_alloc(PLUGIN_APP_ID, PLUGIN_API_VERSION, firmware_api_interface);
     picopass->plugin_wiegand = NULL;
     picopass->plugin_wiegand = NULL;
-    if(plugin_manager_load_single(picopass->plugin_wiegand_manager, APP_ASSETS_PATH("plugins/plugin_wiegand.fal")) !=
+    if(plugin_manager_load_single(
+           picopass->plugin_wiegand_manager, APP_ASSETS_PATH("plugins/plugin_wiegand.fal")) !=
        PluginManagerErrorNone) {
        PluginManagerErrorNone) {
         FURI_LOG_E(TAG, "Failed to load Wiegand plugin");
         FURI_LOG_E(TAG, "Failed to load Wiegand plugin");
-    } else if (plugin_manager_get_count(picopass->plugin_wiegand_manager)) {
-        picopass->plugin_wiegand = (PluginWiegand*)plugin_manager_get_ep(picopass->plugin_wiegand_manager, 0);
+    } else if(plugin_manager_get_count(picopass->plugin_wiegand_manager)) {
+        picopass->plugin_wiegand =
+            (PluginWiegand*)plugin_manager_get_ep(picopass->plugin_wiegand_manager, 0);
         if(strcmp(picopass->plugin_wiegand->name, "Plugin Wiegand") != 0) {
         if(strcmp(picopass->plugin_wiegand->name, "Plugin Wiegand") != 0) {
             FURI_LOG_E(TAG, "Tried to load invalid Wiegand plugin");
             FURI_LOG_E(TAG, "Tried to load invalid Wiegand plugin");
             picopass->plugin_wiegand = NULL;
             picopass->plugin_wiegand = NULL;