MX 1 anno fa
parent
commit
45fbfe9b47
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. 2 1
      cli_control.c

+ 2 - 1
cli_control.c

@@ -17,7 +17,8 @@ static void tx_handler(const uint8_t* buffer, size_t size) {
     furi_stream_buffer_send(cli_tx_stream, buffer, size, FuriWaitForever);
 }
 
-static void tx_handler_stdout(const char* buffer, size_t size) {
+static void tx_handler_stdout(const char* buffer, size_t size, void* context) {
+    UNUSED(context);
     tx_handler((const uint8_t*)buffer, size);
 }