We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
( -
1 parent a11b10f commit fba33dfCopy full SHA for fba33df
src/util/platform/FFPlatform_windows.c
@@ -167,7 +167,8 @@ static void detectWine(FFstrbuf* buf)
167
if (!hntdll) return;
168
pwine_get_version = (void *)GetProcAddress(hntdll, "wine_get_version");
169
if (!pwine_get_version) return;
170
- ffStrbufAppendF(buf, " - wine %s", pwine_get_version());
+ ffStrbufAppendS(buf, buf->length ? " - wine " : "wine ");
171
+ ffStrbufAppendS(buf, pwine_get_version());
172
}
173
174
static void getSystemReleaseAndVersion(FFPlatformSysinfo* info)
0 commit comments