summaryrefslogtreecommitdiff
path: root/source/fitz/error.c
diff options
context:
space:
mode:
authorSimon Bünzli <zeniko@gmail.com>2013-08-18 12:46:36 +0200
committerRobin Watts <robin.watts@artifex.com>2013-08-28 13:35:48 +0100
commit01acc82dc88fe43c4743bc18dce4e8581f129d31 (patch)
tree5db7e0a546e59271153d208ab6f364ff843bf5b2 /source/fitz/error.c
parent0924e802017d5a669041a86beb0f1348d5fda8da (diff)
downloadmupdf-01acc82dc88fe43c4743bc18dce4e8581f129d31.tar.xz
fix various typos
Diffstat (limited to 'source/fitz/error.c')
-rw-r--r--source/fitz/error.c7
1 files changed, 5 insertions, 2 deletions
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