--- /dev/null
+Return-Path: <bremner@tethera.net>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id 036686DE14FD\r
+ for <notmuch@notmuchmail.org>; Sun, 27 Sep 2015 08:36:03 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.107\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.107 tagged_above=-999 required=5 tests=[AWL=0.107]\r
+ autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id sOsBEpbWofPc for <notmuch@notmuchmail.org>;\r
+ Sun, 27 Sep 2015 08:36:01 -0700 (PDT)\r
+Received: from gitolite.debian.net (gitolite.debian.net [87.98.215.224])\r
+ by arlo.cworth.org (Postfix) with ESMTPS id 468866DE14D9\r
+ for <notmuch@notmuchmail.org>; Sun, 27 Sep 2015 08:36:01 -0700 (PDT)\r
+Received: from remotemail by gitolite.debian.net with local (Exim 4.80)\r
+ (envelope-from <bremner@tethera.net>)\r
+ id 1ZgDyx-0008Fz-Em; Sun, 27 Sep 2015 15:35:19 +0000\r
+Received: (nullmailer pid 11931 invoked by uid 1000); Sun, 27 Sep 2015\r
+ 15:32:11 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: [Patch v4 2/9] cli/count: simplify and document return value of\r
+ print_count\r
+Date: Sun, 27 Sep 2015 12:31:56 -0300\r
+Message-Id: <1443367923-11867-3-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 2.5.3\r
+In-Reply-To: <1443367923-11867-1-git-send-email-david@tethera.net>\r
+References: <1443367923-11867-1-git-send-email-david@tethera.net>\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.18\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 27 Sep 2015 15:36:03 -0000\r
+\r
+Essentially a cosmetic change.\r
+---\r
+ notmuch-count.c | 3 ++-\r
+ 1 file changed, 2 insertions(+), 1 deletion(-)\r
+\r
+diff --git a/notmuch-count.c b/notmuch-count.c\r
+index 09613e6..be3e236 100644\r
+--- a/notmuch-count.c\r
++++ b/notmuch-count.c\r
+@@ -67,6 +67,7 @@ count_files (notmuch_query_t *query)\r
+ return count;\r
+ }\r
+ \r
++/* return 0 on success, -1 on failure */\r
+ static int\r
+ print_count (notmuch_database_t *notmuch, const char *query_str,\r
+ const char **exclude_tags, size_t exclude_tags_length, int output, int print_lastmod)\r
+@@ -81,7 +82,7 @@ print_count (notmuch_database_t *notmuch, const char *query_str,\r
+ query = notmuch_query_create (notmuch, query_str);\r
+ if (query == NULL) {\r
+ fprintf (stderr, "Out of memory\n");\r
+- return 1;\r
++ return -1;\r
+ }\r
+ \r
+ for (i = 0; i < exclude_tags_length; i++)\r
+-- \r
+2.5.3\r
+\r