Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix missing sprintf target
  • Loading branch information
Master92 committed Nov 19, 2024
commit 327a045b198b8b27657ed5073ff3a256e97c01a2
2 changes: 1 addition & 1 deletion src/ui/page_version.c
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ static void flash_goggle() {
sprintf(buf, "$FFFF00 %s.#", _lang("No firmware found"));
lv_label_set_text(btn_goggle, buf);
} else if (ret == 3) {
sprintf("#FFFF00 %s. %s.#", _lang("Multiple versions been found"), _lang("Keep only one"));
sprintf(buf, "#FFFF00 %s. %s.#", _lang("Multiple versions been found"), _lang("Keep only one"));
lv_label_set_text(btn_goggle, buf);
} else {
sprintf(buf, "#FF0000 %s#", _lang("FAILED"));
Expand Down