write_http: remove superfluous braces
authorRuben Kerkhof <ruben@rubenkerkhof.com>
Tue, 26 Jul 2016 12:37:45 +0000 (14:37 +0200)
committerRuben Kerkhof <ruben@rubenkerkhof.com>
Tue, 26 Jul 2016 12:37:45 +0000 (14:37 +0200)
src/write_http.c

index ac6ef2f..2d8e553 100644 (file)
@@ -457,7 +457,7 @@ static int wh_write_json (const data_set_t *ds, const value_list_t *vl, /* {{{ *
                         &cb->send_buffer_fill,
                         &cb->send_buffer_free,
                         ds, vl, cb->store_rates);
-        if (status == (-ENOMEM))
+        if (status == -ENOMEM)
         {
                 status = wh_flush_nolock (/* timeout = */ 0, cb);
                 if (status != 0)