From 172418e3b65cd4bcaa028c2fd41516e0079984df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C5=93ur?= Date: Tue, 26 Sep 2023 04:48:23 +0200 Subject: [PATCH] fix: broken UI and windows on macOS Sonoma (#6016) --- macosx/PrefsController.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/PrefsController.mm b/macosx/PrefsController.mm index 09b8ee550..b0d739167 100644 --- a/macosx/PrefsController.mm +++ b/macosx/PrefsController.mm @@ -491,7 +491,7 @@ static NSString* const kWebUIURLFormat = @"http://localhost:%ld/"; case PORT_STATUS_CHECKING: break; default: - NSAssert(NO, @"Port checker returned invalid status: %d", self.fPortChecker.status); + NSAssert(NO, @"Port checker returned invalid status: %lu", self.fPortChecker.status); break; } self.fPortChecker = nil;