diff options
| author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2024-10-15 11:55:27 +0200 |
|---|---|---|
| committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2024-10-15 11:55:27 +0200 |
| commit | 780909f980809a3798343fb8cf82c33ed284885a (patch) | |
| tree | 0ba1c505ee7f8e3b8b70067c365d66f85be40c8b | |
| parent | 85f2e32e276ff92110f56828ac82b28007c72236 (diff) | |
| download | monitoring-plugins-780909f.tar.gz | |
check_icmp: Properly mark function with void input
| -rw-r--r-- | plugins-root/check_icmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins-root/check_icmp.c b/plugins-root/check_icmp.c index d7e6ca2c..e6d43169 100644 --- a/plugins-root/check_icmp.c +++ b/plugins-root/check_icmp.c | |||
| @@ -845,7 +845,7 @@ int main(int argc, char **argv) { | |||
| 845 | return (0); | 845 | return (0); |
| 846 | } | 846 | } |
| 847 | 847 | ||
| 848 | static void run_checks() { | 848 | static void run_checks(void) { |
| 849 | u_int i, t; | 849 | u_int i, t; |
| 850 | u_int final_wait, time_passed; | 850 | u_int final_wait, time_passed; |
| 851 | 851 | ||
