Skip to content

Commit 4159aa9

Browse files
committed
Correct backslash mistake
1 parent 7cc64a1 commit 4159aa9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compiler-rt/lib/asan/asan_interceptors_memintrinsics.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ using namespace __asan;
3636
ASAN_WRITE_RANGE(ctx, to, size); \
3737
} else if (UNLIKELY(!AsanInited())) { \
3838
return internal_memcpy(to, from, size); \
39-
} \
39+
}
4040
#if !SANITIZER_AIX
41-
return REAL(memcpy)(to, from, size); \
41+
return REAL(memcpy)(to, from, size);
4242
#else
43-
return internal_memcpy(to, from, size); \
43+
return internal_memcpy(to, from, size);
4444
#endif
4545
} while (0)
4646

0 commit comments

Comments
 (0)