mpxrt.c (handler): Fix verbosity for error message.

libmpx/

	* mpxrt/mpxrt.c (handler): Fix verbosity for error message.

From-SVN: r232619
This commit is contained in:
Ilya Enkovich 2016-01-20 14:51:36 +00:00 committed by Ilya Enkovich
parent 889d569816
commit e15f0e537f
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2016-01-20 Ilya Enkovich <enkovich.gnu@gmail.com>
* mpxrt/mpxrt.c (handler): Fix verbosity for error message.
2016-01-18 Jakub Jelinek <jakub@redhat.com>
* mpxwrap/mpx_wrappers.c (__mpx_wrapper_memmove): Avoid

View File

@ -268,7 +268,7 @@ handler (int sig __attribute__ ((unused)),
__mpxrt_write_uint (VERB_ERROR, trapno, 10);
__mpxrt_write (VERB_ERROR, ", ip = 0x");
__mpxrt_write_uint (VERB_ERROR, ip, 16);
__mpxrt_write (VERB_BR, "\n");
__mpxrt_write (VERB_ERROR, "\n");
exit (255);
}
else
@ -277,7 +277,7 @@ handler (int sig __attribute__ ((unused)),
__mpxrt_write_uint (VERB_ERROR, trapno, 10);
__mpxrt_write (VERB_ERROR, "! at 0x");
__mpxrt_write_uint (VERB_ERROR, ip, 16);
__mpxrt_write (VERB_BR, "\n");
__mpxrt_write (VERB_ERROR, "\n");
exit (255);
}
}