diff --git a/applications/plugins/tama_p1/hal.c b/applications/plugins/tama_p1/hal.c index 7e1e9a2c3..c862e44b3 100644 --- a/applications/plugins/tama_p1/hal.c +++ b/applications/plugins/tama_p1/hal.c @@ -39,7 +39,7 @@ static void tama_p1_hal_log(log_level_t level, char* buff, ...) { FuriString* string; va_list args; va_start(args, buff); - string_init_vprintf(string, buff, args); + furi_string_cat_vprintf(string, buff, args); va_end(args); switch(level) { @@ -134,4 +134,4 @@ void tama_p1_hal_init(hal_t* hal) { hal->set_frequency = tama_p1_hal_set_frequency; hal->play_frequency = tama_p1_hal_play_frequency; hal->handler = tama_p1_hal_handler; -} +} \ No newline at end of file