Commit 146abcd7 authored by Rémi Duraffort's avatar Rémi Duraffort

extenssions: fix invalid format string.

parent 92ea10da
......@@ -314,7 +314,7 @@ QWidget* ExtensionDialog::CreateWidget( extension_widget_t *p_widget )
return list;
default:
msg_Err( p_intf, "Widget type %d unknown" );
msg_Err( p_intf, "Widget type %d unknown", p_widget->type );
return NULL;
}
}
......@@ -624,7 +624,7 @@ QWidget* ExtensionDialog::UpdateWidget( extension_widget_t *p_widget )
return list;
default:
msg_Err( p_intf, "Widget type %d unknown" );
msg_Err( p_intf, "Widget type %d unknown", p_widget->type );
return NULL;
}
}
......
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