summaryrefslogtreecommitdiffstats
path: root/plugins/check_tcp.c
diff options
context:
space:
mode:
authorRincewindsHat <12514511+RincewindsHat@users.noreply.github.com>2023-10-19 10:20:27 (GMT)
committerRincewindsHat <12514511+RincewindsHat@users.noreply.github.com>2023-10-19 10:20:27 (GMT)
commit81f3b4165146eedd2da60afc5677ec44a0db9829 (patch)
tree5387e43d19e023365b55b975abb2b1959d6b20fc /plugins/check_tcp.c
parent07f9c438f31de7a280e43c4196a32d200ad41fbe (diff)
downloadmonitoring-plugins-81f3b4165146eedd2da60afc5677ec44a0db9829.tar.gz
Fix fallout of the previous changes
Diffstat (limited to 'plugins/check_tcp.c')
-rw-r--r--plugins/check_tcp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c
index c103612..054f1a3 100644
--- a/plugins/check_tcp.c
+++ b/plugins/check_tcp.c
@@ -275,7 +275,7 @@ main (int argc, char **argv)
275 } 275 }
276 printf("server_expect_count: %d\n", (int)server_expect_count); 276 printf("server_expect_count: %d\n", (int)server_expect_count);
277 for(size_t i = 0; i < server_expect_count; i++) 277 for(size_t i = 0; i < server_expect_count; i++)
278 printf("\t%d: %s\n", i, server_expect[i]); 278 printf("\t%zd: %s\n", i, server_expect[i]);
279 } 279 }
280 280
281 /* if(len) later on, we know we have a non-NULL response */ 281 /* if(len) later on, we know we have a non-NULL response */