Skip to content

Commit d273521

Browse files
committed
Reformat
1 parent 52d9d82 commit d273521

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

compiler-rt/test/lit.common.cfg.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -971,7 +971,9 @@ def target_page_size():
971971
stdin=subprocess.PIPE,
972972
stdout=subprocess.PIPE,
973973
)
974-
out, err = proc.communicate(b'import os; print(os.sysconf("SC_PAGESIZE") if hasattr(os, "sysconf") else "")')
974+
out, err = proc.communicate(
975+
b'import os; print(os.sysconf("SC_PAGESIZE") if hasattr(os, "sysconf") else "")'
976+
)
975977
return int(out)
976978
except:
977979
return 4096

0 commit comments

Comments
 (0)