Kernel: don't print ( -

This commit is contained in:
李通洲
2024-10-14 16:28:53 +08:00
parent a11b10fb37
commit fba33df1d3
+2 -1
View File
@@ -167,7 +167,8 @@ static void detectWine(FFstrbuf* buf)
if (!hntdll) return;
pwine_get_version = (void *)GetProcAddress(hntdll, "wine_get_version");
if (!pwine_get_version) return;
ffStrbufAppendF(buf, " - wine %s", pwine_get_version());
ffStrbufAppendS(buf, buf->length ? " - wine " : "wine ");
ffStrbufAppendS(buf, pwine_get_version());
}
static void getSystemReleaseAndVersion(FFPlatformSysinfo* info)