]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/pnm.c
Do not scare the user with error messages when everything is ok.
[ffmpeg] / libavcodec / pnm.c
index 1f28aced690369e1be309f8b776de343ca3c9377..587b703bedc7fc93dd5a4daa3d8365a6aa03ceda 100644 (file)
@@ -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)