plug-ins, pdb: Add missing break statements to switch in correct file
This commit is contained in:
parent
a0a7e713b4
commit
8b9696a7fa
1 changed files with 3 additions and 3 deletions
|
|
@ -652,9 +652,9 @@ HELP
|
|||
|
||||
switch (bmode)
|
||||
{
|
||||
case 0: border = GEGL_ABYSS_CLAMP;
|
||||
case 1: border = GEGL_ABYSS_LOOP;
|
||||
case 2: border = GEGL_ABYSS_NONE;
|
||||
case 0: border = GEGL_ABYSS_CLAMP; break;
|
||||
case 1: border = GEGL_ABYSS_LOOP; break;
|
||||
case 2: border = GEGL_ABYSS_NONE; break;
|
||||
}
|
||||
|
||||
node = gegl_node_new_child (NULL,
|
||||
|
|
|
|||
Loading…
Reference in a new issue