diff options
author | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2021-10-25 15:36:58 (GMT) |
---|---|---|
committer | RincewindsHat <12514511+RincewindsHat@users.noreply.github.com> | 2021-10-26 15:07:09 (GMT) |
commit | 50fc9b73a2127c8ed1944b8e3fd5f0f7b64ca8ec (patch) | |
tree | e624706512578302e7781eda83669498ae47eb19 /lib | |
parent | 8f2cfd1c805f68a21e221f9ea629800be1c88af8 (diff) | |
download | monitoring-plugins-50fc9b73a2127c8ed1944b8e3fd5f0f7b64ca8ec.tar.gz |
Switch to uint64_t
Diffstat (limited to 'lib')
-rw-r--r-- | lib/utils_disk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils_disk.h b/lib/utils_disk.h index 999270c..bf52e4c 100644 --- a/lib/utils_disk.h +++ b/lib/utils_disk.h | |||
@@ -27,7 +27,7 @@ struct parameter_list | |||
27 | uintmax_t total, available, available_to_root, used, | 27 | uintmax_t total, available, available_to_root, used, |
28 | inodes_free, inodes_free_to_root, inodes_used, inodes_total; | 28 | inodes_free, inodes_free_to_root, inodes_used, inodes_total; |
29 | double dfree_pct, dused_pct; | 29 | double dfree_pct, dused_pct; |
30 | double dused_units, dfree_units, dtotal_units; | 30 | uint64_t dused_units, dfree_units, dtotal_units; |
31 | double dused_inodes_percent, dfree_inodes_percent; | 31 | double dused_inodes_percent, dfree_inodes_percent; |
32 | }; | 32 | }; |
33 | 33 | ||