summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--stream/tvi_bsdbt848.c2
-rw-r--r--stream/tvi_v4l.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/stream/tvi_bsdbt848.c b/stream/tvi_bsdbt848.c
index 4d3a891e4e..2576bb6a1b 100644
--- a/stream/tvi_bsdbt848.c
+++ b/stream/tvi_bsdbt848.c
@@ -211,7 +211,7 @@ static tvi_handle_t *tvi_init_bsdbt848(tv_param_t* tv_param)
else
priv->dspdev = strdup(tv_param->adevice);
- tvh->tv_param=tv_param;
+ priv->tv_param=tv_param;
return tvh;
}
diff --git a/stream/tvi_v4l.c b/stream/tvi_v4l.c
index 8a7f19b51f..b27dda0d5d 100644
--- a/stream/tvi_v4l.c
+++ b/stream/tvi_v4l.c
@@ -300,7 +300,7 @@ static tvi_handle_t *tvi_init_v4l(tv_param_t* tv_param)
return(NULL);
}
- h->tv_param=tv_param;
+ priv->tv_param=tv_param;
return(h);
}