8000 [3.14] gh-128627: Emscripten: Add missing semicolon in ios detection … · python/cpython@d62b73a · GitHub
[go: up one dir, main page]

Skip to content

Commit d62b73a

Browse files
[3.14] gh-128627: Emscripten: Add missing semicolon in ios detection code (GH-135590) (#135592)
(cherry picked from commit 68b7e1a) Co-authored-by: Hood Chatham <roberthoodchatham@gmail.com>
1 parent a2c4791 commit d62b73a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/emscripten_trampoline.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function getPyEMCountArgsPtr() {
8080
// To differentiate, we check if the platform is 'MacIntel' (common for Macs and newer iPads)
8181
// AND if the device has multi-touch capabilities (navigator.maxTouchPoints > 1)
8282
(navigator.platform === 'MacIntel' && typeof navigator.maxTouchPoints !== 'undefined' && navigator.maxTouchPoints > 1)
83-
)
83+
);
8484
if (isIOS) {
8585
return 0;
8686
}

0 commit comments

Comments
 (0)
0