diff options
Diffstat (limited to 'stream/obj_array.c')
-rw-r--r-- | stream/obj_array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/obj_array.c b/stream/obj_array.c index 666e113a..cfcd3fb1 100644 --- a/stream/obj_array.c +++ b/stream/obj_array.c @@ -12,7 +12,7 @@ fz_newarray(fz_obj **op, int initialcap) obj = *op = fz_malloc(sizeof (fz_obj)); if (!obj) return fz_outofmem; - obj->refs = 1; + obj->refs = 1; obj->kind = FZ_ARRAY; obj->u.a.len = 0; |