Skip to content

Commit

Permalink
Added missing "return 0"
Browse files Browse the repository at this point in the history
  • Loading branch information
bubeck committed Oct 25, 2024
1 parent ad1ceee commit f587577
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion example/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ void use_i18n(void)
}
}

void main(void)
int main(void)
{
lv_i18n_init(lv_i18n_language_pack);

Expand All @@ -26,5 +26,7 @@ void main(void)
lv_i18n_set_locale("ru-RU");
puts("ru-RU:");
use_i18n();

return 0;
}

0 comments on commit f587577

Please sign in to comment.