Module: monitoring-plugins
    Branch: master
    Commit: eb2dfdd5c24b87198b66397b224d6406c468a0bc
    Author: Andreas Baumann <202930+andreasbaum...@users.noreply.github.com>
 Committer: GitHub <nore...@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);

Reply via email to