summaryrefslogtreecommitdiff
path: root/stream/obj_simple.c
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@hotmail.com>2008-03-08 22:57:51 +0100
committerSebastian Rasmussen <sebras@hotmail.com>2008-03-08 22:57:51 +0100
commit9280178546960a918e6218b0050160710873c167 (patch)
treefa771b861394a4e6c9081aa0b78a34893e248c5b /stream/obj_simple.c
parent5653ed4d9e7d413192a8923d29eb05c752d0b1ac (diff)
downloadmupdf-9280178546960a918e6218b0050160710873c167.tar.xz
Fixed remaining compiler warning.
Diffstat (limited to 'stream/obj_simple.c')
-rw-r--r--stream/obj_simple.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/stream/obj_simple.c b/stream/obj_simple.c
index c674f056..b87a3cf1 100644
--- a/stream/obj_simple.c
+++ b/stream/obj_simple.c
@@ -292,6 +292,9 @@ fz_objcmp(fz_obj *a, fz_obj *b)
return 1;
}
return 0;
+
+ case FZ_POINTER:
+ return (char *) a->u.p - (char *) b->u.p;
}
return 1;
}