]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-128627: Emscripten: Add missing semicolon in ios detection code (#135590)
authorHood Chatham <roberthoodchatham@gmail.com>
Mon, 16 Jun 2025 23:17:17 +0000 (16:17 -0700)
committerGitHub <noreply@github.com>
Mon, 16 Jun 2025 23:17:17 +0000 (23:17 +0000)
Python/emscripten_trampoline.c

index 975c28eec104c6699308f863de6404ace8b9e21c..75b98a047234d8614f9769383e0b2f4ccb1a2e47 100644 (file)
@@ -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;
     }