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

Skip to content
8000

Commit 68b7e1a

Browse files
authored
gh-128627: Emscripten: Add missing semicolon in ios detection code (#135590)
1 parent 730133a commit 68b7e1a

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