projects
/
platform
/
upstream
/
glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef883fd
)
Fix an uninialized variable warning
author
Matthias Clasen
<mclasen@redhat.com>
Sat, 24 Sep 2011 20:38:51 +0000
(16:38 -0400)
committer
Matthias Clasen
<mclasen@redhat.com>
Sat, 24 Sep 2011 23:01:02 +0000
(19:01 -0400)
glib/tests/cond.c
patch
|
blob
|
history
diff --git
a/glib/tests/cond.c
b/glib/tests/cond.c
index
32cbcb3
..
246a341
100644
(file)
--- a/
glib/tests/cond.c
+++ b/
glib/tests/cond.c
@@
-67,6
+67,8
@@
produce_values (gpointer data)
gint total;
gint i;
+ total = 0;
+
for (i = 1; i < 100; i++)
{
total += i;