From: Ruben Kerkhof Date: Sat, 23 Apr 2016 11:57:27 +0000 (+0200) Subject: bind plugin: space after realloc X-Git-Tag: collectd-5.6.0~330 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=2f70742ed2b39ad7f0cecc942803f04c0f98c31d;p=collectd.git bind plugin: space after realloc --- 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.");