summaryrefslogtreecommitdiff
path: root/fitz
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@gmail.com>2012-06-24 01:18:21 +0200
committerTor Andersson <tor.andersson@artifex.com>2012-06-25 13:50:59 +0200
commit69b926f318b8be17d72345eb32870946e9bd40a0 (patch)
tree55053b442a156eade074609df74175e33d684360 /fitz
parent767b08e66fef57327b9a2af023207b97300d42e2 (diff)
downloadmupdf-69b926f318b8be17d72345eb32870946e9bd40a0.tar.xz
Fix incorrect assignment in unused bitmap accessor.
Diffstat (limited to 'fitz')
-rw-r--r--fitz/res_bitmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fitz/res_bitmap.c b/fitz/res_bitmap.c
index 1bd2827d..4b871c23 100644
--- a/fitz/res_bitmap.c
+++ b/fitz/res_bitmap.c
@@ -117,5 +117,5 @@ void fz_bitmap_details(fz_bitmap *bit, int *w, int *h, int *n, int *stride)
if (n)
*n = bit->n;
if (stride)
- *w = bit->stride;
+ *stride = bit->stride;
}