diff spudec.c @ 26759:8eff880f638c

cosmetics: Remove useless parentheses from return statements.
author diego
date Fri, 16 May 2008 09:42:28 +0000
parents 1318e956c092
children 3ac3d3a51934
line wrap: on
line diff
--- a/spudec.c	Fri May 16 09:41:00 2008 +0000
+++ b/spudec.c	Fri May 16 09:42:28 2008 +0000
@@ -497,7 +497,7 @@
 int spudec_changed(void * this)
 {
     spudec_handle_t * spu = (spudec_handle_t*)this;
-    return (spu->spu_changed || spu->now_pts > spu->end_pts);
+    return spu->spu_changed || spu->now_pts > spu->end_pts;
 }
 
 void spudec_assemble(void *this, unsigned char *packet, unsigned int len, int pts100)