[gimp] plug-ins, pdb: Add missing break statements to switch in correct file



commit 8b9696a7fa1ecb1c298755976ea7bd5bd264fcc0
Author: Mikael Magnusson <mikachu src gnome org>
Date:   Mon Aug 18 01:32:49 2014 +0200

    plug-ins, pdb: Add missing break statements to switch in correct file

 tools/pdbgen/pdb/plug_in_compat.pdb |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/tools/pdbgen/pdb/plug_in_compat.pdb b/tools/pdbgen/pdb/plug_in_compat.pdb
index 7b5b6af..fb638dc 100644
--- a/tools/pdbgen/pdb/plug_in_compat.pdb
+++ b/tools/pdbgen/pdb/plug_in_compat.pdb
@@ -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,


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]