* gnulib/fnmatch_loop.c (EXT): Fix warning (signed and unsigned type in
conditional expression).
+2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
+
+ * gnulib/fnmatch_loop.c (EXT): Fix warning (signed and unsigned type in
+ conditional expression).
+
2009-11-09 Robert Millan <rmh.grub@aybabtu.com>
Import from Gnulib.
size_t plensize; \
size_t newpsize; \
\
+ assert (p > startp); \
plen = (opt == L_('?') || opt == L_('@') \
? pattern_len \
- : p - startp + 1); \
+ : (unsigned) (p - startp) + 1); \
plensize = plen * sizeof (CHAR); \
newpsize = offsetof (struct patternlist, str) + plensize; \
if ((size_t) -1 / sizeof (CHAR) < plen \