summaryrefslogtreecommitdiff
path: root/pdf/pdf_object.c
diff options
context:
space:
mode:
Diffstat (limited to 'pdf/pdf_object.c')
-rw-r--r--pdf/pdf_object.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/pdf/pdf_object.c b/pdf/pdf_object.c
index a28743d1..ab6968c6 100644
--- a/pdf/pdf_object.c
+++ b/pdf/pdf_object.c
@@ -1193,7 +1193,8 @@ static inline int iswhite(int ch)
static inline int isdelim(int ch)
{
- return ch == '(' || ch == ')' ||
+ return
+ ch == '(' || ch == ')' ||
ch == '<' || ch == '>' ||
ch == '[' || ch == ']' ||
ch == '{' || ch == '}' ||