vala-tests r53 - trunk/tests/bugs



Author: juergbi
Date: Sun Nov 30 13:34:00 2008
New Revision: 53
URL: http://svn.gnome.org/viewvc/vala-tests?rev=53&view=rev

Log:
Fix uninitialized variables in test case for bug 434507


Modified:
   trunk/tests/bugs/434507.vala

Modified: trunk/tests/bugs/434507.vala
==============================================================================
--- trunk/tests/bugs/434507.vala	(original)
+++ trunk/tests/bugs/434507.vala	Sun Nov 30 13:34:00 2008
@@ -1,5 +1,5 @@
 static void main() {
-	uchar b;
+	uchar b = 0;
 	if (b > 0) {
     }
-}
\ No newline at end of file
+}



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]