summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRobin Watts <robin.watts@artifex.com>2012-11-29 11:21:07 +0000
committerRobin Watts <robin.watts@artifex.com>2012-11-29 11:57:10 +0000
commit94b2a364223143dc7f749862c6983173d8b47a66 (patch)
tree309a287b2375a139c5655798930e454ec26a9317 /apps
parented4c1a10463b1a6a6777b5685d4bab4a0f5d5068 (diff)
downloadmupdf-94b2a364223143dc7f749862c6983173d8b47a66.tar.xz
Bug 693461: Add LL suffix to large number.
Only used in mujstest script generation.
Diffstat (limited to 'apps')
-rw-r--r--apps/mudraw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/mudraw.c b/apps/mudraw.c
index 0573f477..c6d329a0 100644
--- a/apps/mudraw.c
+++ b/apps/mudraw.c
@@ -282,7 +282,7 @@ static void drawpage(fz_context *ctx, fz_document *doc, int pagenum)
fprintf(mujstest_file, "TEXT %d\n", mujstest_count);
break;
case FZ_WIDGET_CONTENT_SPECIAL:
- fprintf(mujstest_file, "TEXT %lld\n", 46702919800 + mujstest_count);
+ fprintf(mujstest_file, "TEXT %lld\n", 46702919800LL + mujstest_count);
break;
case FZ_WIDGET_CONTENT_DATE:
fprintf(mujstest_file, "TEXT Jun %d 1979\n", 1 + ((13 + mujstest_count) % 30));