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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/stream/tvi_def.h b/stream/tvi_def.h
index 261a8ee4cd..43de8c6423 100644
--- a/stream/tvi_def.h
+++ b/stream/tvi_def.h
@@ -47,11 +47,11 @@ static const tvi_functions_t functions =
static tvi_handle_t *new_handle(void)
{
- tvi_handle_t *h = (tvi_handle_t *)malloc(sizeof(tvi_handle_t));
+ tvi_handle_t *h = malloc(sizeof(tvi_handle_t));
if (!h)
return NULL;
- h->priv = (priv_t *)malloc(sizeof(priv_t));
+ h->priv = malloc(sizeof(priv_t));
if (!h->priv)
{
free(h);