From: Stian Low <wineryyyyy@gmail.com> https://bugs.winehq.org/show_bug.cgi?id=59830 --- dlls/mmdevapi/tests/propstore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/mmdevapi/tests/propstore.c b/dlls/mmdevapi/tests/propstore.c index cd1ea9d9d77..9824cf99d33 100644 --- a/dlls/mmdevapi/tests/propstore.c +++ b/dlls/mmdevapi/tests/propstore.c @@ -62,7 +62,7 @@ static void test_propertystore(IPropertyStore *store, IMMDeviceEnumerator *mme, hr = IPropertyStore_GetValue(store, (const PROPERTYKEY*)&DEVPKEY_Device_DeviceDesc, &pv2); ok(hr == S_OK, "Failed with %#lx\n", hr); ok(pv2.vt == VT_LPWSTR && pv2.pwszVal, "Device_DeviceDesc value had wrong type: %#x or was NULL\n", pv2.vt); - trace("DeviceDesc...: %s\n", debugstr_w(pv2.pwszVal)); + trace("DeviceDesc: %s\n", debugstr_w(pv2.pwszVal)); if (i == 0) { -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/11083