Skip to content

Commit

Permalink
Kernel: don't print ( -
Browse files Browse the repository at this point in the history
  • Loading branch information
CarterLi committed Oct 14, 2024
1 parent a11b10f commit fba33df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/util/platform/FFPlatform_windows.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit fba33df

Please sign in to comment.