Skip to content

Commit b60e30e

Browse files
committed
ipc: remove extra space
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
1 parent 7f236c7 commit b60e30e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ipc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ static int string_list_add(struct string_list *list, const char *str)
6262
char *new_buffer;
6363
size_t new_cap = list->cap * 2;
6464

65-
if (new_cap < list->len +len + 1)
65+
if (new_cap < list->len + len + 1)
6666
new_cap = list->len + len + 1;
6767
new_buffer = realloc(list->buffer, new_cap);
6868
if (!new_buffer)

0 commit comments

Comments
 (0)