]> git.notmuchmail.org Git - notmuch/blobdiff - lib/string-map.c
lib: run uncrustify
[notmuch] / lib / string-map.c
index 71eac6349a896ef49fe1cbfea3378a308951e1a4..e3a81b4fe1457a030154fb3cb05cfc59cd3bb059 100644 (file)
@@ -154,10 +154,10 @@ _notmuch_string_map_set (notmuch_string_map_t *map,
     _notmuch_string_map_sort (map);
     pair = bsearch_first (map->pairs, map->length, key, true);
     if (! pair)
-       _notmuch_string_map_append (map, key, val);
+       _notmuch_string_map_append (map, key, val);
     else {
-       talloc_free (pair->value);
-       pair->value = talloc_strdup (map->pairs, val);
+       talloc_free (pair->value);
+       pair->value = talloc_strdup (map->pairs, val);
     }
 }