mirror of https://github.com/GNOME/gimp.git
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:
parent
049877f03f
commit
d86bcdf9a4
|
@ -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
|
||||
|
|
|
@ -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++)
|
||||
|
|
|
@ -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++)
|
||||
|
|
|
@ -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++)
|
||||
|
|
Loading…
Reference in New Issue