From e15f0e537f7fdc581543bfbf9a3b0818521df7e5 Mon Sep 17 00:00:00 2001 From: Ilya Enkovich Date: Wed, 20 Jan 2016 14:51:36 +0000 Subject: [PATCH] mpxrt.c (handler): Fix verbosity for error message. libmpx/ * mpxrt/mpxrt.c (handler): Fix verbosity for error message. From-SVN: r232619 --- libmpx/ChangeLog | 4 ++++ libmpx/mpxrt/mpxrt.c | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/libmpx/ChangeLog b/libmpx/ChangeLog index d028bcafde5..fcf764c6f3f 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 bcdd3a63bd2..b52906bb9e8 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); } }