diff options
author | Lorenz Kästle <12514511+RincewindsHat@users.noreply.github.com> | 2023-10-29 10:09:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-29 10:09:00 (GMT) |
commit | 77e38ac1c025b8431d1834a2c1059f9677c78ab1 (patch) | |
tree | aa8dc016303530e56155826f355cb7e3c3a4ee94 /lib/utils_base.h | |
parent | 2eea6bb2a04bbfb169bac5f0f7c319f998e8ab87 (diff) | |
parent | eead88edda047843b911afd7b63e7decfee306ce (diff) | |
download | monitoring-plugins-77e38ac1c025b8431d1834a2c1059f9677c78ab1.tar.gz |
Merge pull request #1953 from RincewindsHat/compiler_warnings-sign-compare
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 80b8743..9d4dffe 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 */ |