From 1c12c216538c4d84005c17b15c69faab97c600b9 Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Tue, 10 Jan 2017 20:07:09 +1100 Subject: [PATCH] glwindow: use the same parameter names between vfuncs and functions of the same name Silences GI warnings about symbol's not being used from source code comment block --- gst-libs/gst/gl/gstglwindow.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst-libs/gst/gl/gstglwindow.h b/gst-libs/gst/gl/gstglwindow.h index ccb19efcb2..d6f65d4cc1 100644 --- a/gst-libs/gst/gl/gstglwindow.h +++ b/gst-libs/gst/gl/gstglwindow.h @@ -137,7 +137,7 @@ struct _GstGLWindowClass { GstObjectClass parent_class; guintptr (*get_display) (GstGLWindow *window); - void (*set_window_handle) (GstGLWindow *window, guintptr id); + void (*set_window_handle) (GstGLWindow *window, guintptr handle); guintptr (*get_window_handle) (GstGLWindow *window); void (*draw) (GstGLWindow *window); void (*run) (GstGLWindow *window);