[HWASan] Add missing newlines.

This commit is contained in:
Matt Morehouse 2021-09-15 09:06:01 -07:00
parent c78ed20784
commit 0a07789fe9
1 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ INTERCEPTOR(void, siglongjmp, __hw_sigjmp_buf env, int val) {
if (env[0].__magic != kHwJmpBufMagic) {
Printf(
"WARNING: Unexpected bad jmp_buf. Either setjmp was not called or "
"there is a bug in HWASan.");
"there is a bug in HWASan.\n");
return REAL(siglongjmp)(env, val);
}
@ -131,7 +131,7 @@ INTERCEPTOR(void, longjmp, __hw_jmp_buf env, int val) {
if (env[0].__magic != kHwJmpBufMagic) {
Printf(
"WARNING: Unexpected bad jmp_buf. Either setjmp was not called or "
"there is a bug in HWASan.");
"there is a bug in HWASan.\n");
return REAL(longjmp)(env, val);
}
InternalLongjmp(env[0].__jmpbuf, val);