Hi, On Wed, 23 Aug 2006, Pierre Habouzit wrote: > - for (i = 4; (1 << i) < hsize && i < 31; i++); > + for (i = 4; (1u << i) < hsize && i < 31; i++); The variable i never takes on the value 31 (or any higher value), so there is no bug here. Unless you port git to a system where an int has less than 32 bit. Ciao, Dscho - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html