videotestsrc: add missing break in set_property switch case
authorAurélien Zanelli <aurelien.zanelli@parrot.com>
Wed, 6 Jan 2016 11:14:39 +0000 (12:14 +0100)
committerSebastian Dröge <sebastian@centricular.com>
Wed, 6 Jan 2016 11:21:06 +0000 (13:21 +0200)
To avoid future issue when adding new properties.

https://bugzilla.gnome.org/show_bug.cgi?id=760204

gst/videotestsrc/gstvideotestsrc.c

index 56bb473..a1620f9 100644 (file)
@@ -563,6 +563,7 @@ gst_video_test_src_set_property (GObject * object, guint prop_id,
       break;
     case PROP_HORIZONTAL_SPEED:
       src->horizontal_speed = g_value_get_int (value);
+      break;
     default:
       break;
   }