diff options
author | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-04-12 16:11:01 +0200 |
---|---|---|
committer | Andoni Morales Alastruey <ylatuya@gmail.com> | 2013-04-12 16:12:18 +0200 |
commit | 588bc3f2bff849e5476a1fd30f75cd937c973173 (patch) | |
tree | a169da0538b843f76735784965ca3505825e4e2d | |
parent | 7cbe9e8fdb5e9eb1399c27e78554af90ee55a52b (diff) |
gstreamer-io-templates: add missing ';'
-rw-r--r-- | recipes/gstreamer-ios-templates.recipe | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/gstreamer-ios-templates.recipe b/recipes/gstreamer-ios-templates.recipe index b8eafc3..0b82504 100644 --- a/recipes/gstreamer-ios-templates.recipe +++ b/recipes/gstreamer-ios-templates.recipe @@ -3,8 +3,8 @@ from collections import defaultdict from cerbero.utils import shell from custom import list_gstreamer_plugins_by_category -DECLARE_PLUGIN_TPL = 'GST_PLUGIN_STATIC_DECLARE(%s)' -REGISTER_PLUGIN_TPL = 'GST_PLUGIN_STATIC_REGISTER(%s)' +DECLARE_PLUGIN_TPL = 'GST_PLUGIN_STATIC_DECLARE(%s);' +REGISTER_PLUGIN_TPL = ' GST_PLUGIN_STATIC_REGISTER(%s);' DEFINE_TPL = '/* #define GST_IOS_PLUGINS_%s */\n' REGISTER_TPL = 'void gst_backend_register_plugins (void);' DEFINES_TPL = '''\ |