summaryrefslogtreecommitdiff
path: root/source/pdf/pdf-object.c
diff options
context:
space:
mode:
authorTor Andersson <tor.andersson@artifex.com>2015-04-07 17:07:41 +0200
committerTor Andersson <tor.andersson@artifex.com>2015-04-07 17:07:41 +0200
commit30252bb78a1a91e4913d2a785cdf83c0837c6e95 (patch)
tree83a62b221fc58754eda361c5745fa1abf9ef78d7 /source/pdf/pdf-object.c
parentda64f5f63c0d263e5edd6d8b4ace6a4146a72c84 (diff)
downloadmupdf-30252bb78a1a91e4913d2a785cdf83c0837c6e95.tar.xz
Fix whitespace.
Diffstat (limited to 'source/pdf/pdf-object.c')
-rw-r--r--source/pdf/pdf-object.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/source/pdf/pdf-object.c b/source/pdf/pdf-object.c
index 2a7ab618..f6c10b63 100644
--- a/source/pdf/pdf-object.c
+++ b/source/pdf/pdf-object.c
@@ -95,7 +95,6 @@ typedef struct pdf_obj_ref_s
#define ARRAY(obj) ((pdf_obj_array *)(obj))
#define REF(obj) ((pdf_obj_ref *)(obj))
-
pdf_obj *
pdf_new_null(fz_context *ctx, pdf_document *doc)
{
@@ -1031,7 +1030,6 @@ pdf_dict_finds(fz_context *ctx, pdf_obj *obj, const char *key, int *location)
if (strcmp(pdf_to_name(ctx, DICT(obj)->items[i].k), key) == 0)
return i;
-
if (location)
*location = DICT(obj)->len;
}
@@ -1166,7 +1164,6 @@ pdf_dict_getl(fz_context *ctx, pdf_obj *obj, ...)
return obj;
}
-
pdf_obj *
pdf_dict_get(fz_context *ctx, pdf_obj *obj, pdf_obj *key)
{
@@ -1286,7 +1283,7 @@ pdf_dict_puts(fz_context *ctx, pdf_obj *obj, const char *key, pdf_obj *val)
{
pdf_document *doc;
pdf_obj *keyobj;
-
+
RESOLVE(obj);
if (obj < PDF_OBJ__LIMIT || obj->kind != PDF_DICT)
fz_throw(ctx, FZ_ERROR_GENERIC, "not a dictionary (%s)", pdf_objkindstr(obj));