]> arthur.barton.de Git - netdata.git/commitdiff
Merge pull request #1329 from ktsaou/master
authorCosta Tsaousis <costa@tsaousis.gr>
Wed, 7 Dec 2016 20:37:17 +0000 (22:37 +0200)
committerGitHub <noreply@github.com>
Wed, 7 Dec 2016 20:37:17 +0000 (22:37 +0200)
fix for bit-limited flags, not working properly in gcc versions

conf.d/Makefile.am
src/web_client.h

index d10c693e6bff35dc83f75af1487e838faf910a16..eefe894cf24a4842e492a83540a87d19ec345ca3 100644 (file)
@@ -13,10 +13,6 @@ dist_config_DATA = \
     health_email_recipients.conf \
     $(NULL)
 
-chartsconfigdir=$(configdir)/charts.d
-dist_chartsconfig_DATA = \
-    $(NULL)
-
 nodeconfigdir=$(configdir)/node.d
 dist_nodeconfig_DATA = \
     node.d/README.md \
index 2555a0c2410ea295d5a297b9e0476b029013ea56..8db1bae5237ebb1e43005646df34a2ef6cc66494 100644 (file)
@@ -34,7 +34,7 @@ struct response {
     Bytef zbuffer[ZLIB_CHUNK];      // temporary buffer for storing compressed output
     size_t zsent;                   // the compressed bytes we have sent to the client
     size_t zhave;                   // the compressed bytes that we have received from zlib
-    int zinitialized:1;
+    int zinitialized;
 #endif /* NETDATA_WITH_ZLIB */
 
 };