make style

This commit is contained in:
iceman1001 2022-10-16 17:56:12 +02:00
commit 71f96ba1e7
12 changed files with 1184 additions and 841 deletions

View file

@ -2182,7 +2182,7 @@ static void PacketReceived(PacketCommandNG *packet) {
uint8_t *buff = BigBuf_malloc(size);
if (buff == NULL) {
if (g_dbglevel >= DBG_DEBUG) Dbprintf ("Could not allocate buffer");
if (g_dbglevel >= DBG_DEBUG) Dbprintf("Could not allocate buffer");
// Trigger a finish downloading signal with an PM3_EMALLOC
reply_ng(CMD_SPIFFS_DOWNLOAD, PM3_EMALLOC, NULL, 0);
} else {
@ -2199,7 +2199,7 @@ static void PacketReceived(PacketCommandNG *packet) {
}
// Trigger a finish downloading signal with an ACK frame
reply_ng(CMD_SPIFFS_DOWNLOAD, PM3_SUCCESS, NULL, 0);
BigBuf_free ();
BigBuf_free();
}
LED_B_OFF();
break;