aboutsummaryrefslogtreecommitdiffhomepage
path: root/lib/directory.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/directory.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/directory.cc')
-rw-r--r--lib/directory.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/directory.cc b/lib/directory.cc
index 5d673e21..f576e336 100644
--- a/lib/directory.cc
+++ b/lib/directory.cc
@@ -52,7 +52,7 @@ _notmuch_filenames_destructor (notmuch_filenames_t *filenames)
* iterating over the non-prefixed portion of terms sharing a common
* prefix.
*/
-notmuch_filenames_t *
+static notmuch_filenames_t *
_notmuch_filenames_create (void *ctx,
notmuch_database_t *notmuch,
const char *prefix)