From 5c57b3d71757cb87f3aea47a60f0ec897df24006 Mon Sep 17 00:00:00 2001 From: Ilya Enkovich Date: Wed, 20 Jan 2016 15:35:11 +0000 Subject: [PATCH] backport: mpxrt.c (handler): Fix verbosity for error message. libmpx/ Backport from mainline r232619. 2016-01-20 Ilya Enkovich * mpxrt/mpxrt.c (handler): Fix verbosity for error message. From-SVN: r232621 --- libmpx/ChangeLog | 8 ++++++++ libmpx/mpxrt/mpxrt.c | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/libmpx/ChangeLog b/libmpx/ChangeLog index 4f8f401c6234..89d88cc19fbc 100644 --- a/libmpx/ChangeLog +++ b/libmpx/ChangeLog @@ -1,3 +1,11 @@ +2016-01-20 Ilya Enkovich + + Backport from mainline r232619. + 2016-01-20 Ilya Enkovich + + * mpxrt/mpxrt.c (handler): Fix verbosity for + error message. + 2015-12-04 Release Manager * GCC 5.3.0 released. diff --git a/libmpx/mpxrt/mpxrt.c b/libmpx/mpxrt/mpxrt.c index 0eff87e7cc66..64ee260ef390 100644 --- a/libmpx/mpxrt/mpxrt.c +++ b/libmpx/mpxrt/mpxrt.c @@ -296,7 +296,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 @@ -305,7 +305,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); } }