From 83b201389bc6d26747d70f2e9104111e2a5b39fd Mon Sep 17 00:00:00 2001 From: Hood Chatham Date: Mon, 16 Jun 2025 16:17:17 -0700 Subject: [PATCH] gh-128627: Emscripten: Add missing semicolon in ios detection code (GH-135590) (cherry picked from commit 68b7e1a6677d7a8fb47fbd28cb5d39a87217273c) Co-authored-by: Hood Chatham --- Python/emscripten_trampoline.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/emscripten_trampoline.c b/Python/emscripten_trampoline.c index 975c28eec104c6..75b98a047234d8 100644 --- a/Python/emscripten_trampoline.c +++ b/Python/emscripten_trampoline.c @@ -80,7 +80,7 @@ function getPyEMCountArgsPtr() { // To differentiate, we check if the platform is 'MacIntel' (common for Macs and newer iPads) // AND if the device has multi-touch capabilities (navigator.maxTouchPoints > 1) (navigator.platform === 'MacIntel' && typeof navigator.maxTouchPoints !== 'undefined' && navigator.maxTouchPoints > 1) - ) + ); if (isIOS) { return 0; }