[PATCH 1/2] style fixes

Subject: [PATCH 1/2] style fixes

Date: Mon, 9 May 2011 01:13:14 +0200

To: notmuch@notmuchmail.org

Cc:

From: Florian Friesdorf


---
 notmuch-search.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/notmuch-search.c b/notmuch-search.c
index e7fc41a..fd7c7d1 100644
--- a/notmuch-search.c
+++ b/notmuch-search.c
@@ -112,13 +112,13 @@ format_item_id_text (unused (const void *ctx),
 }
 
 static char *
-sanitize_string(const void *ctx, const char *str)
+sanitize_string (const void *ctx, const char *str)
 {
     char *out, *loop;
 
     loop = out = talloc_strdup (ctx, str);
 
-    for(;*loop;loop++){
+    for (; *loop; loop++) {
 	if ((unsigned char)(*loop) < 32)
 	    *loop = '?';
     }
-- 
1.7.5.1


Thread: