1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-03-28 02:20:04 +01:00

Fix an uninialized variable warning

This commit is contained in:
Matthias Clasen 2011-09-24 16:38:51 -04:00
parent ef883fd0dc
commit df9e5c2435

@ -67,6 +67,8 @@ produce_values (gpointer data)
gint total;
gint i;
total = 0;
for (i = 1; i < 100; i++)
{
total += i;