diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-11-11 07:15:07 +0100 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-11-11 07:15:07 +0100 |
commit | 58de1fff510078e3d2d8cfce033c87299adf78f0 (patch) | |
tree | 80635049b0d1ccc8840717982afe983ea18c0b37 /include/fitz/object.h | |
parent | 2ec725624d637789845478a90f799e9eeb54f9ee (diff) | |
download | mupdf-58de1fff510078e3d2d8cfce033c87299adf78f0.tar.xz |
filter reference counting
Diffstat (limited to 'include/fitz/object.h')
-rw-r--r-- | include/fitz/object.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fitz/object.h b/include/fitz/object.h index e275074b..d24b8a7a 100644 --- a/include/fitz/object.h +++ b/include/fitz/object.h @@ -24,8 +24,8 @@ struct fz_keyval_s struct fz_obj_s { + unsigned short nrefs; unsigned short kind; /* fz_objkind takes 4 bytes :( */ - unsigned short refcount; union { int b; |