Skip to content

Commit 0f4f8cd

Browse files
committed
clang-format
1 parent a601f6c commit 0f4f8cd

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

compiler-rt/lib/tsan/rtl/tsan_platform_linux.cpp

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,9 @@ static void ReExecIfNeeded(bool ignore_heap) {
261261
"Re-execing with fixed virtual address space.\n");
262262

263263
if (personality(old_personality | ADDR_NO_RANDOMIZE) == -1) {
264-
Printf("FATAL: ThreadSanitizer: unable to disable ASLR (perhaps "
265-
"sandboxing is enabled?).\n");
264+
Printf(
265+
"FATAL: ThreadSanitizer: unable to disable ASLR (perhaps "
266+
"sandboxing is enabled?).\n");
266267
Printf("FATAL: Please rerun without sandboxing and/or ASLR.\n");
267268
Die();
268269
}
@@ -296,11 +297,13 @@ static void ReExecIfNeeded(bool ignore_heap) {
296297
"N.B. reducing ASLR entropy is preferable.\n");
297298

298299
if (personality(old_personality | ADDR_NO_RANDOMIZE) == -1) {
299-
Printf("FATAL: ThreadSanitizer: encountered an incompatible memory "
300-
"but was unable to disable ASLR (perhaps sandboxing is "
301-
"enabled?).\n");
302-
Printf("FATAL: Please rerun with lower ASLR entropy, ASLR disabled, "
303-
"and/or sandboxing disabled.\n");
300+
Printf(
301+
"FATAL: ThreadSanitizer: encountered an incompatible memory "
302+
"but was unable to disable ASLR (perhaps sandboxing is "
303+
"enabled?).\n");
304+
Printf(
305+
"FATAL: Please rerun with lower ASLR entropy, ASLR disabled, "
306+
"and/or sandboxing disabled.\n");
304307
Die();
305308
}
306309

0 commit comments

Comments
 (0)