summaryrefslogtreecommitdiffstats
path: root/stream/tvi_def.h
diff options
context:
space:
mode:
Diffstat (limited to 'stream/tvi_def.h')
-rw-r--r--stream/tvi_def.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/stream/tvi_def.h b/stream/tvi_def.h
index 7b664a15b9..967c15ee15 100644
--- a/stream/tvi_def.h
+++ b/stream/tvi_def.h
@@ -34,12 +34,12 @@ static tvi_handle_t *new_handle(void)
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 @@ static tvi_handle_t *new_handle(void)
h->norm = -1;
h->channel = -1;
h->scan = NULL;
- return(h);
+ return h;
}
static void free_handle(tvi_handle_t *h)