Skip to content

Commit fba33df

Browse files
committed
Kernel: don't print ( -
1 parent a11b10f commit fba33df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/util/platform/FFPlatform_windows.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@ static void detectWine(FFstrbuf* buf)
167167
if (!hntdll) return;
168168
pwine_get_version = (void *)GetProcAddress(hntdll, "wine_get_version");
169169
if (!pwine_get_version) return;
170-
ffStrbufAppendF(buf, " - wine %s", pwine_get_version());
170+
ffStrbufAppendS(buf, buf->length ? " - wine " : "wine ");
171+
ffStrbufAppendS(buf, pwine_get_version());
171172
}
172173

173174
static void getSystemReleaseAndVersion(FFPlatformSysinfo* info)

0 commit comments

Comments
 (0)