Code

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 ac6ef2f513ecf4cb31da4317c3927b363e5f6262..2d8e5535c2db3c8261484bd2d41bdfbc57e2547f 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)