summaryrefslogtreecommitdiff
path: root/libavcodec/pnm.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/pnm.c')
-rw-r--r--libavcodec/pnm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/pnm.c b/libavcodec/pnm.c
index 1f28aced69..587b703bed 100644
--- a/libavcodec/pnm.c
+++ b/libavcodec/pnm.c
@@ -23,7 +23,7 @@
static inline int pnm_space(int c)
{
- return (c == ' ' || c == '\n' || c == '\r' || c == '\t');
+ return c == ' ' || c == '\n' || c == '\r' || c == '\t';
}
static void pnm_get(PNMContext *sc, char *str, int buf_size)