[monitoring-plugins] fixed two PRId64 to PRIu64 in perfdata_uint64 ...
GitHub
git at monitoring-plugins.org
Thu Oct 27 22:50:11 CEST 2022
Module: monitoring-plugins
Branch: master
Commit: eb2dfdd5c24b87198b66397b224d6406c468a0bc
Author: Andreas Baumann <202930+andreasbaumann at users.noreply.github.com>
Committer: GitHub <noreply at github.com>
Date: Thu Oct 27 22:48:18 2022 +0200
URL: https://www.monitoring-plugins.org/repositories/monitoring-plugins/commit/?id=eb2dfdd
fixed two PRId64 to PRIu64 in perfdata_uint64 (#1802)
---
plugins/utils.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/plugins/utils.c b/plugins/utils.c
index f75cf03..b4214c6 100644
--- a/plugins/utils.c
+++ b/plugins/utils.c
@@ -615,9 +615,9 @@ char *perfdata_uint64 (const char *label,
char *data = NULL;
if (strpbrk (label, "'= "))
- xasprintf (&data, "'%s'=%" PRId64 "%s;", label, val, uom);
+ xasprintf (&data, "'%s'=%" PRIu64 "%s;", label, val, uom);
else
- xasprintf (&data, "%s=%" PRId64 "%s;", label, val, uom);
+ xasprintf (&data, "%s=%" PRIu64 "%s;", label, val, uom);
if (warnp)
xasprintf (&data, "%s%" PRIu64 ";", data, warn);
More information about the Commits
mailing list