diff command.c @ 26759:8eff880f638c

cosmetics: Remove useless parentheses from return statements.
author diego
date Fri, 16 May 2008 09:42:28 +0000
parents 6eb659782586
children 4ab1cfcee430
line wrap: on
line diff
--- a/command.c	Fri May 16 09:41:00 2008 +0000
+++ b/command.c	Fri May 16 09:42:28 2008 +0000
@@ -1899,7 +1899,7 @@
         return M_PROPERTY_NOT_IMPLEMENTED;
     }
 
-    return (result==TVI_CONTROL_TRUE?M_PROPERTY_OK:M_PROPERTY_ERROR);
+    return result == TVI_CONTROL_TRUE ? M_PROPERTY_OK : M_PROPERTY_ERROR;
 }
 
 static int mp_property_teletext_mode(m_option_t * prop, int action, void *arg,