Skip to content

Commit

Permalink
icon-bar: Silence -Wmaybe-uninitialized warning
Browse files Browse the repository at this point in the history
False positive that only appears at a certain optimization level.
  • Loading branch information
Tamaranch committed Feb 15, 2025
1 parent 12e6cab commit e2949a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/icon_bar.c
Original file line number Diff line number Diff line change
Expand Up @@ -1507,7 +1507,7 @@ void
rstto_icon_bar_set_active (RsttoIconBar *icon_bar,
gint idx)
{
GList *item;
GList *item = NULL;

g_return_if_fail (RSTTO_IS_ICON_BAR (icon_bar));

Expand Down

0 comments on commit e2949a5

Please sign in to comment.