gimpguidetool: fix somewhat pointless warning about uninitalized variable

This commit is contained in:
Simon Budig 2023-05-20 18:46:41 +02:00
parent a2458f1528
commit 690c9ae21a
1 changed files with 1 additions and 1 deletions

View File

@ -427,7 +427,7 @@ gimp_guide_tool_push_status (GimpGuideTool *guide_tool,
}
else
{
GimpGuideToolGuide *guides[2];
GimpGuideToolGuide *guides[2] = { 0, };
gint n_guides = 0;
gint i;