--- /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 833EC6DE1744\r
+ for <notmuch@notmuchmail.org>; Mon, 7 Sep 2015 06:34:06 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 2.739\r
+X-Spam-Level: **\r
+X-Spam-Status: No, score=2.739 tagged_above=-999 required=5 tests=[AWL=-0.951,\r
+ RCVD_IN_BRBL_LASTEXT=1.644, RCVD_IN_SBL=2.596, RP_MATCHES_RCVD=-0.55]\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 VzL1bjj3oDef for <notmuch@notmuchmail.org>;\r
+ Mon, 7 Sep 2015 06:34:04 -0700 (PDT)\r
+Received: from yantan.tethera.net (yantan.tethera.net [199.188.72.155])\r
+ by arlo.cworth.org (Postfix) with ESMTPS id CACF86DE140C\r
+ for <notmuch@notmuchmail.org>; Mon, 7 Sep 2015 06:34:04 -0700 (PDT)\r
+Received: from remotemail by yantan.tethera.net with local (Exim 4.80)\r
+ (envelope-from <bremner@tethera.net>)\r
+ id 1ZYwYe-0002wM-52; Mon, 07 Sep 2015 10:34:04 -0300\r
+Received: (nullmailer pid 22530 invoked by uid 1000); Mon, 07 Sep 2015\r
+ 13:34:00 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: [PATCH 2/2] cli/count: apply uncrustify changes\r
+Date: Mon, 7 Sep 2015 10:33:38 -0300\r
+Message-Id: <1441632818-22483-2-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 2.5.1\r
+In-Reply-To: <1441632818-22483-1-git-send-email-david@tethera.net>\r
+References: <1441632818-22483-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: Mon, 07 Sep 2015 13:34:06 -0000\r
+\r
+---\r
+ notmuch-count.c | 6 +++---\r
+ 1 file changed, 3 insertions(+), 3 deletions(-)\r
+\r
+diff --git a/notmuch-count.c b/notmuch-count.c\r
+index 66f5e53..a844384 100644\r
+--- a/notmuch-count.c\r
++++ b/notmuch-count.c\r
+@@ -117,7 +117,7 @@ count_file (notmuch_database_t *notmuch, FILE *input, const char **exclude_tags,\r
+ size_t line_size;\r
+ int ret = 0;\r
+ \r
+- while (!ret && (line_len = getline (&line, &line_size, input)) != -1) {\r
++ while (! ret && (line_len = getline (&line, &line_size, input)) != -1) {\r
+ chomp_newline (line);\r
+ ret = print_count (notmuch, line, exclude_tags, exclude_tags_length,\r
+ output, print_lastmod);\r
+@@ -189,7 +189,7 @@ notmuch_count_command (notmuch_config_t *config, int argc, char *argv[])\r
+ \r
+ notmuch_exit_if_unmatched_db_uuid (notmuch);\r
+ \r
+- query_str = query_string_from_args (config, argc-opt_index, argv+opt_index);\r
++ query_str = query_string_from_args (config, argc - opt_index, argv + opt_index);\r
+ if (query_str == NULL) {\r
+ fprintf (stderr, "Out of memory.\n");\r
+ return EXIT_FAILURE;\r
+@@ -197,7 +197,7 @@ notmuch_count_command (notmuch_config_t *config, int argc, char *argv[])\r
+ \r
+ if (exclude == EXCLUDE_TRUE) {\r
+ search_exclude_tags = notmuch_config_get_search_exclude_tags\r
+- (config, &search_exclude_tags_length);\r
++ (config, &search_exclude_tags_length);\r
+ }\r
+ \r
+ if (batch)\r
+-- \r
+2.5.1\r
+\r