aboutsummaryrefslogtreecommitdiff
path: root/notmuch-dump.c
diff options
context:
space:
mode:
authorCarl Worth <cworth@cworth.org>2009-11-23 20:25:13 -0800
committerCarl Worth <cworth@cworth.org>2009-11-23 20:25:13 -0800
commit94eb9aacd40a8aa133f64bbe5ed71c0138fb5ed9 (patch)
tree54ca17330d4b930cf76c1025be854a7512c1dd50 /notmuch-dump.c
parentba3554b8045e16ae883d559b7e575e8aca00f6d2 (diff)
lib/query: Drop the first and max_messages arguments from search_messages.
These only existed to support the chunky-searching hack, but that was recently dropped anyway.
Diffstat (limited to 'notmuch-dump.c')
-rw-r--r--notmuch-dump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/notmuch-dump.c b/notmuch-dump.c
index fc06f3f..ea326bb 100644
--- a/notmuch-dump.c
+++ b/notmuch-dump.c
@@ -58,7 +58,7 @@ notmuch_dump_command (unused (void *ctx), int argc, char *argv[])
output = stdout;
}
- for (messages = notmuch_query_search_messages (query, 0, -1);
+ for (messages = notmuch_query_search_messages (query);
notmuch_messages_has_more (messages);
notmuch_messages_advance (messages))
{