diff options
Diffstat (limited to 'Build')
-rw-r--r-- | Build/source/texk/web2c/luatexdir/pdf/pdfgen.w | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Build/source/texk/web2c/luatexdir/pdf/pdfgen.w b/Build/source/texk/web2c/luatexdir/pdf/pdfgen.w index a6bf67f3ebb..fe5f97b8411 100644 --- a/Build/source/texk/web2c/luatexdir/pdf/pdfgen.w +++ b/Build/source/texk/web2c/luatexdir/pdf/pdfgen.w @@ -577,7 +577,7 @@ void print_pdffloat(PDF pdf, pdffloat f) pdf_out(pdf, '1'); } else { char a[24]; - snprintf(a, 23, "%ld", m); + snprintf(a, 23, "%" LONGINTEGER_PRI "d", m); pdf_puts(pdf, a); } } else { |