mirror of
https://github.com/mpv-player/mpv.git
synced 2025-12-28 05:33:14 +00:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user