]> git.notmuchmail.org Git - notmuch/blobdiff - util/string-util.c
util: run uncrustify
[notmuch] / util / string-util.c
index 27f8a26b4938c4c770486e504b62f168db64f582..9c46a81a58e20030b586953e577efd777ef2af17 100644 (file)
@@ -53,7 +53,7 @@ strsplit_len (const char *s, char delim, size_t *len)
        count++;
     }
 
-    if (count==0)
+    if (count == 0)
        return NULL;
 
     *len = count;
@@ -183,6 +183,7 @@ parse_boolean_term (void *ctx, const char *str,
     /* Parse prefix */
     str = skip_space (str);
     const char *pos = strchr (str, ':');
+
     if (! pos || pos == str)
        goto FAIL;
     *prefix_out = talloc_strndup (ctx, str, pos - str);