diff stream/tvi_def.h @ 26756:c43ce7268677

cosmetics: Remove useless parentheses from return statements.
author diego
date Fri, 16 May 2008 08:43:15 +0000
parents 7ee4ae1648e6
children 0f1b5b68af32
line wrap: on
line diff
--- a/stream/tvi_def.h	Fri May 16 08:33:27 2008 +0000
+++ b/stream/tvi_def.h	Fri May 16 08:43:15 2008 +0000
@@ -34,12 +34,12 @@
     tvi_handle_t *h = (tvi_handle_t *)malloc(sizeof(tvi_handle_t));
 
     if (!h)
-	return(NULL);
+	return NULL;
     h->priv = (priv_t *)malloc(sizeof(priv_t));
     if (!h->priv)
     {
 	free(h);
-	return(NULL);
+	return NULL;
     }
     memset(h->priv, 0, sizeof(priv_t));
     h->functions = &functions;
@@ -49,7 +49,7 @@
     h->norm = -1;
     h->channel = -1;
     h->scan = NULL;
-    return(h);
+    return h;
 }
 
 static void free_handle(tvi_handle_t *h)