aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-26 20:11:58 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-26 20:11:58 -0700
commitd07dd49aac0f337d3f631504f521311a9685bd1f (patch)
treed4f6ae1beeb51c008d34db7d8ea519e0f73c3e59 /notmuch.c
parentc12823648ee84b4748e0e9f0cd97f7264911b589 (diff)
Fix incorrect name of _notmuch_thread_get_subject.
Somehow this naming with an underscore crept in, (but only in the private header, so notmuch.c was compiling with no prototype). Fix to be the notmuch_thread_get_subject originally intended.
Diffstat (limited to 'notmuch.c')
-rw-r--r--notmuch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch.c b/notmuch.c
index ae1d5976..c432d0d7 100644
--- a/notmuch.c
+++ b/notmuch.c
@@ -653,7 +653,7 @@ search_command (int argc, char *argv[])
printf ("%s %s",
notmuch_thread_get_thread_id (thread),
- _notmuch_thread_get_subject (thread));
+ notmuch_thread_get_subject (thread));
printf (" (");
for (tags = notmuch_thread_get_tags (thread);