This is the mail archive of the lvm2-cvs@sourceware.org mailing list for the LVM2 project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

LVM2/test/unit bitset_t.c


CVSROOT:	/cvs/lvm2
Module name:	LVM2
Changes by:	zkabelac@sourceware.org	2011-11-21 13:15:45

Modified files:
	test/unit      : bitset_t.c 

Log message:
	Cleanup gcc warning
	
	bitset_t.c:39: warning: 'last' may be used uninitialized in this function
	
	Compiler is not smart enough to see the code path which avoid using
	unitialized 'last'.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/LVM2/test/unit/bitset_t.c.diff?cvsroot=lvm2&r1=1.1&r2=1.2

--- LVM2/test/unit/bitset_t.c	2011/11/20 21:43:20	1.1
+++ LVM2/test/unit/bitset_t.c	2011/11/21 13:15:40	1.2
@@ -36,7 +36,7 @@
 
 static void test_get_next()
 {
-        int i, j, last, first;
+        int i, j, last = 0, first;
         dm_bitset_t bs = dm_bitset_create(mem, NR_BITS);
 
         for (i = 0; i < NR_BITS; i++)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]