aboutsummaryrefslogtreecommitdiffstats
path: root/src/nl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nl.c')
-rw-r--r--src/nl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nl.c b/src/nl.c
index e41e695e7..539c53f08 100644
--- a/src/nl.c
+++ b/src/nl.c
@@ -44,13 +44,13 @@
value, and a string separator. */
/* Right justified, no leading zeroes. */
-static char const FORMAT_RIGHT_NOLZ[] = "%*" PRIdMAX "%s";
+static char const FORMAT_RIGHT_NOLZ[] = "%*jd%s";
/* Right justified, leading zeroes. */
-static char const FORMAT_RIGHT_LZ[] = "%0*" PRIdMAX "%s";
+static char const FORMAT_RIGHT_LZ[] = "%0*jd%s";
/* Left justified, no leading zeroes. */
-static char const FORMAT_LEFT[] = "%-*" PRIdMAX "%s";
+static char const FORMAT_LEFT[] = "%-*jd%s";
/* Default section delimiter characters. */
static char DEFAULT_SECTION_DELIMITERS[] = "\\:";