diff options
author | Ilya Enkovich <enkovich.gnu@gmail.com> | 2016-01-20 14:51:36 +0000 |
---|---|---|
committer | Ilya Enkovich <ienkovich@gcc.gnu.org> | 2016-01-20 14:51:36 +0000 |
commit | e15f0e537f7fdc581543bfbf9a3b0818521df7e5 (patch) | |
tree | b30c68f59112dc808c2542b3bb5c7711a51100a3 /libmpx | |
parent | 889d5698160b7018cca82827d57fedd3c1132b5e (diff) | |
download | gcc-e15f0e537f7fdc581543bfbf9a3b0818521df7e5.zip gcc-e15f0e537f7fdc581543bfbf9a3b0818521df7e5.tar.gz gcc-e15f0e537f7fdc581543bfbf9a3b0818521df7e5.tar.bz2 |
mpxrt.c (handler): Fix verbosity for error message.
libmpx/
* mpxrt/mpxrt.c (handler): Fix verbosity for error message.
From-SVN: r232619
Diffstat (limited to 'libmpx')
-rw-r--r-- | libmpx/ChangeLog | 4 | ||||
-rw-r--r-- | libmpx/mpxrt/mpxrt.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libmpx/ChangeLog b/libmpx/ChangeLog index d028bca..fcf764c 100644 --- a/libmpx/ChangeLog +++ b/libmpx/ChangeLog @@ -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 diff --git a/libmpx/mpxrt/mpxrt.c b/libmpx/mpxrt/mpxrt.c index bcdd3a6..b52906b 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); } } |