summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTor Andersson <tor@ghostscript.com>2008-08-15 16:38:14 +0200
committerTor Andersson <tor@ghostscript.com>2008-08-15 16:38:14 +0200
commitbdcfc98006f17dbe748665d8e98006ab79250d4f (patch)
tree12f9a7f3404a16ed3e27eba57aded2da7ecdf3d9 /include
parent04d6081ee6357ba0d0ce2a3281b6e651f10c8656 (diff)
downloadmupdf-bdcfc98006f17dbe748665d8e98006ab79250d4f.tar.xz
Update static instances of fz_error objects to the new non-refcounted form.
Diffstat (limited to 'include')
-rw-r--r--include/fitz/base_runtime.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/fitz/base_runtime.h b/include/fitz/base_runtime.h
index a518bd9b..0bb00292 100644
--- a/include/fitz/base_runtime.h
+++ b/include/fitz/base_runtime.h
@@ -50,11 +50,11 @@ typedef struct fz_error_s fz_error;
struct fz_error_s
{
- fz_error *cause;
char msg[184];
char file[32];
char func[32];
int line;
+ fz_error *cause;
};
#define fz_outofmem (&fz_koutofmem)