diff options
author | Sebastian Dröge <sebastian@centricular.com> | 2014-06-19 08:05:03 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian@centricular.com> | 2014-06-19 08:06:55 +0200 |
commit | db1e4422b617009406ce327dad78789779e5c219 (patch) | |
tree | 06820b3b1125a043a8fb2dc25e68acde017f8b89 /gst/gstquery.c | |
parent | f47a95f4cbb34d79cd14bbe1bef5064326690139 (diff) |
gst: Store more basic type GTypes in variables
Micro optimization to change a function call to a variable access
for all our basic types.
Diffstat (limited to 'gst/gstquery.c')
-rw-r--r-- | gst/gstquery.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/gstquery.c b/gst/gstquery.c index 076b8dca9..78a04fa7a 100644 --- a/gst/gstquery.c +++ b/gst/gstquery.c @@ -65,7 +65,7 @@ GST_DEBUG_CATEGORY_STATIC (gst_query_debug); #define GST_CAT_DEFAULT gst_query_debug -static GType _gst_query_type = 0; +GType _gst_query_type = 0; typedef struct { |