summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDamien Lespiau <damien.lespiau@intel.com>2010-11-12 15:24:00 +0000
committerVíctor Manuel Jáquez Leal <vjaquez@igalia.com>2010-11-12 16:51:25 +0100
commitd86c8fbc9bae4f4962dc475209675539231499c4 (patch)
tree09acad727a74e5631fdfb66aa5cc655a43a52e7c /tests
parent4780062a780bb4a9d7092295717583ae980531fd (diff)
downloadgrilo-d86c8fbc9bae4f4962dc475209675539231499c4.tar.gz
tests: fix compilation warnings in metadata_source
Remove the const before the GList *, shutting down the warnings, make the global variables static. Signed-off-by: Damien Lespiau <damien.lespiau@intel.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/metadata_source.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/metadata_source.c b/tests/metadata_source.c
index f636083..cb009a0 100644
--- a/tests/metadata_source.c
+++ b/tests/metadata_source.c
@@ -22,8 +22,8 @@
#include <grilo.h>
#include <stdbool.h>
-GList *sources;
-const GList *keys;
+static GList *sources;
+static GList *keys;
/* #define DUMP 1 */