diff options
Diffstat (limited to 'gs/base/gsinit.c')
-rw-r--r-- | gs/base/gsinit.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gs/base/gsinit.c b/gs/base/gsinit.c index 43a6192e1..4f83e3d0b 100644 --- a/gs/base/gsinit.c +++ b/gs/base/gsinit.c @@ -1,6 +1,6 @@ /* Copyright (C) 2001-2006 Artifex Software, Inc. All Rights Reserved. - + This software is provided AS-IS with no warranty, either express or implied. @@ -51,8 +51,8 @@ gs_lib_init1(gs_memory_t * mem) int code; for (ipp = gx_init_table; *ipp != 0; ++ipp) - if ((code = (**ipp)(mem)) < 0) - return code; + if ((code = (**ipp)(mem)) < 0) + return code; return 0; } @@ -68,6 +68,6 @@ gs_lib_finit(int exit_status, int code, gs_memory_t *mem) * gs_malloc_release(mem); * else * someone else has control of mem so we can't free it. - * gs_view and iapi.h interface + * gs_view and iapi.h interface */ } |