use break; instead of compiler barfing goto and label: } construct

* app/convert.c: use break; instead of compiler barfing goto and
label: } construct

-Yosh
This commit is contained in:
Manish Singh 1999-09-14 20:02:23 +00:00
parent 049877f03f
commit d86bcdf9a4
4 changed files with 8 additions and 6 deletions

View File

@ -1,3 +1,8 @@
Tue Sep 14 12:52:11 PDT 1999 Manish Singh <yosh@gimp.org>
* app/convert.c: use break; instead of compiler barfing goto and
label: } construct
Tue Sep 14 12:40:47 PDT 1999 Manish Singh <yosh@gimp.org>
* plug-ins/sel2path/global.h

View File

@ -1139,10 +1139,9 @@ make_remap_table (const unsigned char old_palette[],
&& (palentries[j].used_count))
{
remap_table[i] = j;
goto found_this_one;
break;
}
}
found_this_one:
}
}
for (i = 0; i < *num_entries; i++)

View File

@ -1139,10 +1139,9 @@ make_remap_table (const unsigned char old_palette[],
&& (palentries[j].used_count))
{
remap_table[i] = j;
goto found_this_one;
break;
}
}
found_this_one:
}
}
for (i = 0; i < *num_entries; i++)

View File

@ -1139,10 +1139,9 @@ make_remap_table (const unsigned char old_palette[],
&& (palentries[j].used_count))
{
remap_table[i] = j;
goto found_this_one;
break;
}
}
found_this_one:
}
}
for (i = 0; i < *num_entries; i++)