updater: Fix incorrect format specifier

This commit is contained in:
Richard Stanway
2026-02-09 03:06:50 +01:00
committed by Ryan Foster
parent 1866f8c1e6
commit 8752a20830

View File

@@ -382,7 +382,7 @@ bool DownloadWorkerThread()
HttpHandle hConnect = WinHttpConnect(hSession, kCDNHostname, INTERNET_DEFAULT_HTTPS_PORT, 0);
if (!hConnect) {
downloadThreadFailure = true;
Status(L"Update failed: Couldn't connect to %S", kCDNHostname);
Status(L"Update failed: Couldn't connect to %s", kCDNHostname);
return false;
}