From f5ce2ec3e7f58e769360896fafcedbc617df6838 Mon Sep 17 00:00:00 2001 From: ienkovich Date: Wed, 20 Jan 2016 14:51:36 +0000 Subject: [PATCH] libmpx/ * mpxrt/mpxrt.c (handler): Fix verbosity for error message. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@232619 138bc75d-0d04-0410-961f-82ee72b054a4 --- libmpx/ChangeLog | 4 ++++ libmpx/mpxrt/mpxrt.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/libmpx/ChangeLog b/libmpx/ChangeLog index d028bcafde5a..fcf764c6f3f1 100644 --- a/libmpx/ChangeLog +++ b/libmpx/ChangeLog @@ -1,3 +1,7 @@ +2016-01-20 Ilya Enkovich + + * mpxrt/mpxrt.c (handler): Fix verbosity for error message. + 2016-01-18 Jakub Jelinek * mpxwrap/mpx_wrappers.c (__mpx_wrapper_memmove): Avoid diff --git a/libmpx/mpxrt/mpxrt.c b/libmpx/mpxrt/mpxrt.c index bcdd3a63bd24..b52906bb9e89 100644 --- a/libmpx/mpxrt/mpxrt.c +++ b/libmpx/mpxrt/mpxrt.c @@ -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); } } -- 2.47.3