SDL_waylanddatamanager.c (mime_data_list_add): constify the buffer param

Fixes -Wdiscarded-qualifiers warnings from Wayland_data_source_add_data()
This commit is contained in:
Ozkan Sezer 2020-10-14 15:50:04 +03:00
parent eb1aba6105
commit 93e1449764
2 changed files with 1 additions and 1 deletions

0
Xcode/SDL/SDL.xcodeproj/project.pbxproj Executable file → Normal file
View File

View File

@ -181,7 +181,7 @@ mime_data_list_find(struct wl_list* list,
static int
mime_data_list_add(struct wl_list* list,
const char* mime_type,
void* buffer, size_t length)
const void* buffer, size_t length)
{
int status = 0;
size_t mime_type_length = 0;