Willy-JL 2 лет назад
Родитель
Сommit
1474a24d41
3 измененных файлов с 10 добавлено и 6 удалено
  1. 1 1
      gpio_reader_a/GPIO_reader.c
  2. 8 4
      totp/services/config/config.c
  3. 1 1
      zombiez/zombiez.c

+ 1 - 1
gpio_reader_a/GPIO_reader.c

@@ -137,7 +137,7 @@ int32_t GPIO_reader_app(void* p) {
         }
 
         furi_mutex_release(plugin_state->mutex);
-        view_port_update(view_port);
+        view_port_update(view_port);
     }
 
     view_port_enabled_set(view_port, false);

+ 8 - 4
totp/services/config/config.c

@@ -738,15 +738,19 @@ bool totp_config_file_ensure_latest_encryption(
     uint8_t pin_length) {
     bool result = true;
     if(plugin_state->crypto_settings.crypto_version < CRYPTO_LATEST_VERSION) {
-        FURI_LOG_I(LOGGING_TAG, "Migration crypto from v%" PRIu8 " to v%" PRIu8 " is needed", plugin_state->crypto_settings.crypto_version, CRYPTO_LATEST_VERSION);
-        
+        FURI_LOG_I(
+            LOGGING_TAG,
+            "Migration crypto from v%" PRIu8 " to v%" PRIu8 " is needed",
+            plugin_state->crypto_settings.crypto_version,
+            CRYPTO_LATEST_VERSION);
+
 #ifndef TOTP_OBSOLETE_CRYPTO_V1_COMPATIBILITY_ENABLED
-        if (plugin_state->crypto_settings.crypto_version == 1) {
+        if(plugin_state->crypto_settings.crypto_version == 1) {
             furi_crash("Authenticator: Crypto v1 is not supported");
         }
 #endif
 #ifndef TOTP_OBSOLETE_CRYPTO_V2_COMPATIBILITY_ENABLED
-        if (plugin_state->crypto_settings.crypto_version == 2) {
+        if(plugin_state->crypto_settings.crypto_version == 2) {
             furi_crash("Authenticator: Crypto v2 is not supported");
         }
 #endif

+ 1 - 1
zombiez/zombiez.c

@@ -382,7 +382,7 @@ int32_t zombiez_game_app(void* p) {
                 tick(plugin_state);
             }
         }
-        
+
         furi_mutex_release(plugin_state->mutex);
         view_port_update(view_port);
     }