Removed parentheses around return arguments
authorPavel Rochnyack <pavel2000@ngs.ru>
Wed, 25 Jul 2018 17:42:39 +0000 (00:42 +0700)
committerPavel Rochnyack <pavel2000@ngs.ru>
Wed, 25 Jul 2018 17:42:39 +0000 (00:42 +0700)
src/amqp1.c
src/snmp.c

index 9a7b5ce..87bb50c 100644 (file)
@@ -476,7 +476,7 @@ static int amqp1_write(const data_set_t *ds, const value_list_t *vl, /* {{{ */
       ERROR("amqp1 plugin: format_json_finalize failed with status %i.",
             status);
       cd_message_free(cdm);
-      return (status);
+      return status;
     }
     cdm->mbuf.size = strlen(cdm->mbuf.start);
     if (cdm->mbuf.size >= BUFSIZE) {
index a86d085..af26fbd 100644 (file)
@@ -1539,7 +1539,7 @@ static int csnmp_dispatch_table(host_definition_t *host,
       value_cell_ptr[0] = value_cell_ptr[0]->next;
   } /* while (have_more) */
 
-  return (0);
+  return 0;
 } /* int csnmp_dispatch_table */
 
 static int csnmp_read_table(host_definition_t *host, data_definition_t *data) {