Fix some more -Wshadow warnings

These aren't printed with newer gcc or clang versions for some reason.

All of them seem to be about local variables shadowing global functions.
This commit is contained in:
wm4
2013-11-01 17:33:11 +01:00
parent 4b6c00c50a
commit e0b6fdeb8d
10 changed files with 36 additions and 36 deletions

View File

@@ -26,7 +26,7 @@
static int init(priv_t *priv);
static int uninit(priv_t *priv);
static int control(priv_t *priv, int cmd, void *arg);
static int do_control(priv_t *priv, int cmd, void *arg);
static int start(priv_t *priv);
static double grab_video_frame(priv_t *priv, char *buffer, int len);
static int get_video_framesize(priv_t *priv);
@@ -37,7 +37,7 @@ static const tvi_functions_t functions =
{
init,
uninit,
control,
do_control,
start,
grab_video_frame,
get_video_framesize,