diff options
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 * |