diff --git a/dlls/winegstreamer/gstdemux.c b/dlls/winegstreamer/gstdemux.c index 4f053f799c3..6c37a279da1 100644 --- a/dlls/winegstreamer/gstdemux.c +++ b/dlls/winegstreamer/gstdemux.c @@ -888,7 +888,8 @@ static HRESULT GST_Connect(GSTInPin *pPin, IPin *pConnectPin, ALLOCATOR_PROPERTI This->gstfilter = gst_element_factory_make("decodebin2", NULL); if (!This->gstfilter) { - FIXME("Could not make source filter, are gstreamer-plugins-* installed?\n"); + FIXME("Could not make source filter, are gstreamer-plugins-* installed for %u bits?\n", + 8 * (int)sizeof(void*)); return E_FAIL; } g_signal_connect(This->gstfilter, "new-decoded-pad", G_CALLBACK(existing_new_pad), This);