libweston: correct argument name in the handler of wl_data_source.accept

Signed-off-by: Taishi Eguchi <taishi2060@gmail.com>
This commit is contained in:
shierote
2022-03-29 10:22:59 +09:00
committed by Daniel Stone
parent 87bded8b54
commit f2d6d21eec
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ struct dnd_data_source {
static void
data_source_accept(struct weston_data_source *base,
uint32_t time, const char *mime_type)
uint32_t serial, const char *mime_type)
{
struct dnd_data_source *source = (struct dnd_data_source *) base;
xcb_client_message_event_t client_message;
+1 -1
View File
@@ -152,7 +152,7 @@ struct x11_data_source {
static void
data_source_accept(struct weston_data_source *source,
uint32_t time, const char *mime_type)
uint32_t serial, const char *mime_type)
{
}