summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorImanol Fernandez <ifernandez@igalia.com>2021-07-27 12:21:41 +0200
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>2021-07-28 06:05:30 +0000
commiteea28504fa76e3603e6fd3c6a70b705b9fc74680 (patch)
tree265a77b2a54767d20b19581715286c04172bc5e1 /gst-libs
parent0e120ca5aaf1e4838f7ee1791c1f9cc328f2a651 (diff)
downloadgstreamer-plugins-bad-eea28504fa76e3603e6fd3c6a70b705b9fc74680.tar.gz
player: Add static keyword to _config_quark_table
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2439>
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/play/gstplay.c2
-rw-r--r--gst-libs/gst/player/gstplayer.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/gst-libs/gst/play/gstplay.c b/gst-libs/gst/play/gstplay.c
index ed33dff49..300a806e5 100644
--- a/gst-libs/gst/play/gstplay.c
+++ b/gst-libs/gst/play/gstplay.c
@@ -102,7 +102,7 @@ static const gchar *_config_quark_strings[] = {
"accurate-seek",
};
-GQuark _config_quark_table[CONFIG_QUARK_MAX];
+static GQuark _config_quark_table[CONFIG_QUARK_MAX];
#define CONFIG_QUARK(q) _config_quark_table[CONFIG_QUARK_##q]
diff --git a/gst-libs/gst/player/gstplayer.c b/gst-libs/gst/player/gstplayer.c
index 23a99ae9a..dbc2963c2 100644
--- a/gst-libs/gst/player/gstplayer.c
+++ b/gst-libs/gst/player/gstplayer.c
@@ -102,7 +102,7 @@ static const gchar *_config_quark_strings[] = {
"accurate-seek",
};
-GQuark _config_quark_table[CONFIG_QUARK_MAX];
+static GQuark _config_quark_table[CONFIG_QUARK_MAX];
#define CONFIG_QUARK(q) _config_quark_table[CONFIG_QUARK_##q]