diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2023-10-19 12:10:55 +0200 |
---|---|---|
committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2023-10-19 12:10:55 +0200 |
commit | 07f9c438f31de7a280e43c4196a32d200ad41fbe (patch) | |
tree | 642bd4478a70665df23b83cb7b48770c3020c570 /lib/utils_base.h | |
parent | 47cb10013e6935bb6cdf470925ea5a5f74464646 (diff) | |
download | monitoring-plugins-07f9c43.tar.gz |
Fixes for -Wsign-compare
Diffstat (limited to 'lib/utils_base.h')
-rw-r--r-- | lib/utils_base.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils_base.h b/lib/utils_base.h index 80b87435..9d4dffed 100644 --- a/lib/utils_base.h +++ b/lib/utils_base.h | |||
@@ -65,7 +65,7 @@ bool check_range(double, range *); | |||
65 | int get_status(double, thresholds *); | 65 | int get_status(double, thresholds *); |
66 | 66 | ||
67 | /* Handle timeouts */ | 67 | /* Handle timeouts */ |
68 | extern unsigned int timeout_state; | 68 | extern int timeout_state; |
69 | extern unsigned int timeout_interval; | 69 | extern unsigned int timeout_interval; |
70 | 70 | ||
71 | /* All possible characters in a threshold range */ | 71 | /* All possible characters in a threshold range */ |