summaryrefslogtreecommitdiff
path: root/include/fitz/base.h
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2004-11-11 07:15:07 +0100
committerTor Andersson <tor@ghostscript.com>2004-11-11 07:15:07 +0100
commit58de1fff510078e3d2d8cfce033c87299adf78f0 (patch)
tree80635049b0d1ccc8840717982afe983ea18c0b37 /include/fitz/base.h
parent2ec725624d637789845478a90f799e9eeb54f9ee (diff)
downloadmupdf-58de1fff510078e3d2d8cfce033c87299adf78f0.tar.xz
filter reference counting
Diffstat (limited to 'include/fitz/base.h')
-rw-r--r--include/fitz/base.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fitz/base.h b/include/fitz/base.h
index 9ead6c88..e08b2f09 100644
--- a/include/fitz/base.h
+++ b/include/fitz/base.h
@@ -25,11 +25,11 @@ typedef struct fz_error_s fz_error;
struct fz_error_s
{
+ int nrefs;
char msg[184];
char file[32];
char func[32];
int line;
- int frozen;
};
#define fz_outofmem (&fz_koutofmem)