aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/index.cc
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-11-01 21:58:43 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-11-01 21:58:43 -0700
commit67c3bc9db48c9e12d648df4792c706cae723676c (patch)
treefdeff4d93d3da44152b04d1173451ae69f19b0db /lib/index.cc
parent71ff704149d2ab64e14f6731cf84f5185c038751 (diff)
lib: Add some missing static qualifiers.
These various functions and data are all used only locally, so should be marked static. Ensuring we get these right will avoid us accidentally leaking unintended symbols through the library interface.
Diffstat (limited to 'lib/index.cc')
-rw-r--r--lib/index.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/index.cc b/lib/index.cc
index 0d6640bc..00478f8d 100644
--- a/lib/index.cc
+++ b/lib/index.cc
@@ -63,7 +63,7 @@ struct _NotmuchFilterDiscardUuencodeClass {
GMimeFilterClass parent_class;
};
-GMimeFilter *notmuch_filter_discard_uuencode_new (void);
+static GMimeFilter *notmuch_filter_discard_uuencode_new (void);
static void notmuch_filter_discard_uuencode_finalize (GObject *object);
@@ -195,7 +195,7 @@ filter_reset (GMimeFilter *gmime_filter)
*
* Returns: a new #NotmuchFilterDiscardUuencode filter.
**/
-GMimeFilter *
+static GMimeFilter *
notmuch_filter_discard_uuencode_new (void)
{
static GType type = 0;