X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fchrony.c;h=0485036a132aecf6ca0a9b1dbf11907b03aa809e;hb=727a4b977ec6549d94da3f694bf3fe8b0121db58;hp=1735b4954f34254bf61c0690aa000f72d0d95ef2;hpb=4103105fb43cd72294f165b2541540b3a8a99532;p=collectd.git diff --git a/src/chrony.c b/src/chrony.c index 1735b495..0485036a 100644 --- a/src/chrony.c +++ b/src/chrony.c @@ -1053,7 +1053,7 @@ chrony_read(void) { /* collectd read callback: Perform data acquisition */ int rc; - unsigned int now_src, n_sources; + unsigned int n_sources; if (g_chrony_seq_is_initialized == 0) { @@ -1075,7 +1075,7 @@ chrony_read(void) if (rc != CHRONY_RC_OK) return rc; - for (now_src = 0; now_src < n_sources; ++now_src) + for (unsigned int now_src = 0; now_src < n_sources; ++now_src) { int is_reachable; rc = chrony_request_source_data(now_src, &is_reachable);