From 01acc82dc88fe43c4743bc18dce4e8581f129d31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20B=C3=BCnzli?= Date: Sun, 18 Aug 2013 12:46:36 +0200 Subject: fix various typos --- source/fitz/error.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'source/fitz/error.c') diff --git a/source/fitz/error.c b/source/fitz/error.c index 0da7d29e..c5d98c92 100644 --- a/source/fitz/error.c +++ b/source/fitz/error.c @@ -88,9 +88,12 @@ FZ_NORETURN static void throw(fz_error_context *ex); static void throw(fz_error_context *ex) { - if (ex->top >= 0) { + if (ex->top >= 0) + { fz_longjmp(ex->stack[ex->top].buffer, ex->stack[ex->top].code + 2); - } else { + } + else + { fprintf(stderr, "uncaught exception: %s\n", ex->message); LOGE("uncaught exception: %s\n", ex->message); #ifdef USE_OUTPUT_DEBUG_STRING -- cgit v1.2.3