* lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
+2009-10-28 Jim Meyering <meyering@redhat.com>
+
+ exclude: avoid an unwarranted warning
+ * lib/exclude.c (excluded_file_name): Initialize "rc" before switch.
+
2009-10-27 Eric Blake <ebb9@byu.net>
fseek: avoid compilation failure when fflush is replaced
excluded to included or vice versa. */
for (seg = ex->head; seg; seg = seg->next)
{
- bool rc;
+ /* Pacify gcc, so it doesn't issue a spurious
+ "may be used uninitialized" warning. */
+ bool rc = excluded;
switch (seg->type)
{