summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Rasmussen <sebras@hotmail.com>2008-04-09 08:59:42 +0200
committerSebastian Rasmussen <sebras@hotmail.com>2008-04-09 08:59:42 +0200
commit7af999d029f97ccf271fc52c104099136707f786 (patch)
treec56766c0f68c8de34aa0af2e76374dca7c59f3e3
parentbe2e21fa2c597b8c10609711aabab6805f257bd5 (diff)
downloadmupdf-7af999d029f97ccf271fc52c104099136707f786.tar.xz
Whitespace fix.
-rw-r--r--stream/filt_faxd.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/stream/filt_faxd.c b/stream/filt_faxd.c
index a94ebac9..fca7114f 100644
--- a/stream/filt_faxd.c
+++ b/stream/filt_faxd.c
@@ -94,16 +94,16 @@ fz_newfaxd(fz_filter **fp, fz_obj *params)
fax->ref = fz_malloc(fax->stride);
if (!fax->ref)
{
- fz_free(fax);
- return fz_throw("outofmem: scanline buffer one");
+ fz_free(fax);
+ return fz_throw("outofmem: scanline buffer one");
}
fax->dst = fz_malloc(fax->stride);
if (!fax->dst)
{
- fz_free(fax);
- fz_free(fax->ref);
- return fz_throw("outofmem: scanline buffer two");
+ fz_free(fax);
+ fz_free(fax->ref);
+ return fz_throw("outofmem: scanline buffer two");
}
memset(fax->ref, 0, fax->stride);