summaryrefslogtreecommitdiffstats
path: root/sprinter-text.c
diff options
context:
space:
mode:
authorPeter Wang <novalazy@gmail.com>2020-02-08 12:49:22 +1100
committerDavid Bremner <david@tethera.net>2020-02-13 19:10:42 -0400
commitc17fca40e2bc5514863d98807aaed318f144fd1a (patch)
treea507822484750dd2b832a28a3d5df6ff9f51e64d /sprinter-text.c
parente091427d98b0c49e96fb312ad1af6862776b896a (diff)
sprinter: change integer method to use int64_t
In particular, timestamps beyond 2038 could overflow the sprinter interface on systems where time_t is 64-bit but 'int' is a signed 32-bit integer type.
Diffstat (limited to 'sprinter-text.c')
-rw-r--r--sprinter-text.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/sprinter-text.c b/sprinter-text.c
index 648b54b1..7b68f98c 100644
--- a/sprinter-text.c
+++ b/sprinter-text.c
@@ -1,3 +1,4 @@
+#include <inttypes.h>
#include <stdbool.h>
#include <stdio.h>
#include <talloc.h>
@@ -44,11 +45,11 @@ text_string (struct sprinter *sp, const char *val)
}
static void
-text_integer (struct sprinter *sp, int val)
+text_integer (struct sprinter *sp, int64_t val)
{
struct sprinter_text *sptxt = (struct sprinter_text *) sp;
- fprintf (sptxt->stream, "%d", val);
+ fprintf (sptxt->stream, "%"PRId64, val);
}
static void