Commit 5f033381 authored by Laurent Aimar's avatar Laurent Aimar

Fixed bool/int mix up with "intf-show".

parent 96dac2d9
......@@ -421,7 +421,7 @@ int VlcProc::onIntfShow( vlc_object_t *pObj, const char *pVariable,
vlc_value_t oldVal, vlc_value_t newVal,
void *pParam )
{
if (newVal.i_int)
if (newVal.b_bool)
{
VlcProc *pThis = (VlcProc*)pParam;
......
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