From 2f70742ed2b39ad7f0cecc942803f04c0f98c31d Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Sat, 23 Apr 2016 13:57:27 +0200 Subject: [PATCH] bind plugin: space after realloc --- src/bind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bind.c b/src/bind.c index a546ff97..35bb4605 100644 --- a/src/bind.c +++ b/src/bind.c @@ -284,7 +284,7 @@ static size_t bind_curl_callback (void *buf, size_t size, /* {{{ */ { char *temp; - temp = realloc(bind_buffer, bind_buffer_fill + len + 1); + temp = realloc (bind_buffer, bind_buffer_fill + len + 1); if (temp == NULL) { ERROR ("bind plugin: realloc failed."); -- 2.11.0