diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-10-05 11:05:26 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-10-05 11:05:26 +0200 |
commit | 7edeed5a4fae0199a65dc724c2c131d4d120bf28 (patch) | |
tree | c27e90705a7c083643913a82a4deb2d74b385e57 /base/memory.c | |
parent | 98e44466052e654c6b34a685fe7dbc433632aecc (diff) | |
download | mupdf-7edeed5a4fae0199a65dc724c2c131d4d120bf28.tar.xz |
strip out c99-isms for msvc
Diffstat (limited to 'base/memory.c')
-rw-r--r-- | base/memory.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/base/memory.c b/base/memory.c index 88102d00..b0858383 100644 --- a/base/memory.c +++ b/base/memory.c @@ -39,11 +39,11 @@ static fz_memorycontext defmem = { stdmalloc, stdrealloc, stdfree }; static fz_memorycontext *curmem = &defmem; fz_error fz_koutofmem = { - .msg = {"out of memory"}, - .func = {"<malloc>"}, - .file = {"memory.c"}, - .line = 0, - .frozen = 1 + {"out of memory"}, + {"<malloc>"}, + {"memory.c"}, + 0, + 1 }; fz_memorycontext * |