summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2012-07-27 00:21:24 +0200
committerSebastian Rasmussen <sebras@gmail.com>2012-07-27 00:21:24 +0200
commite3b63233f613a02d5b1b9b9eb9712d8c07108993 (patch)
tree8c55a935c5f56ae5aff1d1bf2a318b2a20617d70 /apps
parent551e3a02c79acd6426994b0b198733789f4b4898 (diff)
downloadmupdf-e3b63233f613a02d5b1b9b9eb9712d8c07108993.tar.xz
Fix typo in mudraw preventing tracking of slowest page draw
Diffstat (limited to 'apps')
-rw-r--r--apps/mudraw.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/mudraw.c b/apps/mudraw.c
index 4fce251d..dcd7dafd 100644
--- a/apps/mudraw.c
+++ b/apps/mudraw.c
@@ -365,6 +365,7 @@ static void drawpage(fz_context *ctx, fz_document *doc, int pagenum)
if (diff > timing.max)
{
timing.max = diff;
+ timing.maxpage = pagenum;
timing.maxfilename = filename;
}
timing.total += diff;