From: Antonio Ospite <ao2@ao2.it>
Date: Fri, 29 Sep 2017 09:22:36 +0000 (+0200)
Subject: Make the global App variable static
X-Git-Url: https://git.ao2.it/gst-aseq-appsrc.git/commitdiff_plain/1964e092825b7d2fccb01cbe5064efc2cfd187d5?ds=sidebyside

Make the global App variable static
---

diff --git a/gst-aseq-appsrc.c b/gst-aseq-appsrc.c
index b6d38d0..2fd617f 100644
--- a/gst-aseq-appsrc.c
+++ b/gst-aseq-appsrc.c
@@ -62,7 +62,7 @@ struct _App
   guint64 tick;
 };
 
-App s_app;
+static App s_app;
 
 static int
 init_seq (App * app)