diff options
author | Sebastian Rasmussen <sebras@hotmail.com> | 2008-08-14 18:22:02 +0200 |
---|---|---|
committer | Sebastian Rasmussen <sebras@hotmail.com> | 2008-08-14 18:22:02 +0200 |
commit | 03b4164d1456d28612941fbd68356098d989dfb0 (patch) | |
tree | 20cb62282f0a19c7c9060144353494b1c8c20bae /stream/obj_print.c | |
parent | bb469b12bff616b9f4492958012819c19d82bbb2 (diff) | |
download | mupdf-03b4164d1456d28612941fbd68356098d989dfb0.tar.xz |
Whitespace fix.
Diffstat (limited to 'stream/obj_print.c')
-rw-r--r-- | stream/obj_print.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/stream/obj_print.c b/stream/obj_print.c index 32072306..8d7ffd55 100644 --- a/stream/obj_print.c +++ b/stream/obj_print.c @@ -28,12 +28,12 @@ static inline int iswhite(int ch) static inline int isdelim(int ch) { - return ch == '(' || ch == ')' || - ch == '<' || ch == '>' || - ch == '[' || ch == ']' || - ch == '{' || ch == '}' || - ch == '/' || - ch == '%'; + return ch == '(' || ch == ')' || + ch == '<' || ch == '>' || + ch == '[' || ch == ']' || + ch == '{' || ch == '}' || + ch == '/' || + ch == '%'; } static inline void fmtputc(struct fmt *fmt, int c) |