forked from AuroraMiddleware/gtk
Silence a compiler warning
Clang was complaining that we never use the value stored in mime_type. Just don't store it, we are only interested in the side-effect (interning the string).
This commit is contained in:
parent
96ce9e10b8
commit
746d12fc43
@ -982,7 +982,7 @@ gdk_x11_selection_output_streams_request (GdkDisplay *display,
|
||||
GOutputStream *stream;
|
||||
|
||||
if (special_targets[i].mime_type)
|
||||
mime_type = gdk_intern_mime_type (special_targets[i].mime_type);
|
||||
gdk_intern_mime_type (special_targets[i].mime_type);
|
||||
stream = gdk_x11_selection_output_stream_new (display,
|
||||
notify,
|
||||
requestor,
|
||||
|
Loading…
Reference in New Issue
Block a user