Commit 02224055 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont Committed by Rémi Denis-Courmont

Unused parameter

parent 91ff0ff5
...@@ -788,8 +788,10 @@ void libvlc_media_player_set_drawable( libvlc_media_player_t *p_mi, ...@@ -788,8 +788,10 @@ void libvlc_media_player_set_drawable( libvlc_media_player_t *p_mi,
libvlc_exception_raise(p_e, "Operation not supported"); libvlc_exception_raise(p_e, "Operation not supported");
#elif defined(__APPLE__) #elif defined(__APPLE__)
p_mi->drawable.agl = drawable; p_mi->drawable.agl = drawable;
(void) p_e;
#else #else
p_mi->drawable.xid = drawable; p_mi->drawable.xid = drawable;
(void) p_e;
#endif #endif
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment