aboutsummaryrefslogtreecommitdiff
path: root/lib/string-map.c
diff options
context:
space:
mode:
authoruncrustify <david@tethera.net>2021-03-13 08:45:34 -0400
committerDavid Bremner <david@tethera.net>2021-03-13 08:45:34 -0400
commit8aeba1228ace947c1b689ae6ae08db5d53755917 (patch)
treecd8e503fff2ce312726088e9e3cce175bd59d2b9 /lib/string-map.c
parent97fadd0645e908ff8322577a983dc710bfda33d6 (diff)
lib: run uncrustify
This is the result of running $ uncrustify --replace --config ../devel/uncrustify.cfg *.c *.h *.cc in the lib directory
Diffstat (limited to 'lib/string-map.c')
-rw-r--r--lib/string-map.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/string-map.c b/lib/string-map.c
index 71eac634..e3a81b4f 100644
--- a/lib/string-map.c
+++ b/lib/string-map.c
@@ -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);
}
}