summaryrefslogtreecommitdiff
path: root/metadata
diff options
context:
space:
mode:
authorOndrej Holy <oholy@redhat.com>2017-09-21 19:48:42 +0200
committerOndrej Holy <oholy@redhat.com>2017-09-29 12:58:20 +0200
commite417487975ac99ca935fabf2907150b6d618f197 (patch)
tree73cf265f1526e539e1d4290d54f1d87f96ea1e29 /metadata
parent4932f4c40d70c43c2c2c4630fdd492480ea22723 (diff)
downloadgvfs-e417487975ac99ca935fabf2907150b6d618f197.tar.gz
metadata: Use static keyword for private function
More warnings are printed when building thanks to meson port. Let's add static keyword for private metafile_key_lookup_iter function in order to prevent the following warning: warning: no previous prototype for ‘metafile_key_lookup_iter’ https://bugzilla.gnome.org/show_bug.cgi?id=786149
Diffstat (limited to 'metadata')
-rw-r--r--metadata/metabuilder.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/metadata/metabuilder.c b/metadata/metabuilder.c
index a8c8e3ef..f45d20ae 100644
--- a/metadata/metabuilder.c
+++ b/metadata/metabuilder.c
@@ -344,7 +344,7 @@ metafile_set_mtime (MetaFile *file,
file->last_changed = mtime;
}
-GSequenceIter *
+static GSequenceIter *
metafile_key_lookup_iter (MetaFile *file,
const char *key)
{