MX před 1 rokem
rodič
revize
45fbfe9b47
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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);
 }