gimpguidetool: fix somewhat pointless warning about uninitalized variable
This commit is contained in:
parent
a2458f1528
commit
690c9ae21a
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue