summaryrefslogtreecommitdiff
path: root/pdf
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2012-01-27 12:59:48 +0100
committerTor Andersson <tor.andersson@artifex.com>2012-01-27 13:01:29 +0100
commita52b70e3d003c5b89791861a5815b56fbb949b33 (patch)
treef0f8c1352ab055e3df87b7ce224d231121e48ddf /pdf
parent4a61e49b6eda6c9f74c8010548f529385a5ade5e (diff)
downloadmupdf-a52b70e3d003c5b89791861a5815b56fbb949b33.tar.xz
Whitespace fixes.
Diffstat (limited to 'pdf')
-rw-r--r--pdf/pdf_function.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/pdf/pdf_function.c b/pdf/pdf_function.c
index 61682ac2..7111cae7 100644
--- a/pdf/pdf_function.c
+++ b/pdf/pdf_function.c
@@ -1425,11 +1425,12 @@ pdf_load_function(pdf_xref *xref, fz_obj *dict)
int type = func->type;
pdf_drop_function(ctx, func);
fz_throw(ctx, "cannot load %s function (%d %d R)",
- (type == SAMPLE ? "sampled" :
- (type == EXPONENTIAL ? "exponential" :
- (type == STITCHING ? "stitching" :
- (type == POSTSCRIPT ? "calculator" :
- "unknown")))), fz_to_num(dict), fz_to_gen(dict));
+ type == SAMPLE ? "sampled" :
+ type == EXPONENTIAL ? "exponential" :
+ type == STITCHING ? "stitching" :
+ type == POSTSCRIPT ? "calculator" :
+ "unknown",
+ fz_to_num(dict), fz_to_gen(dict));
}
return func;