diff options
author | ienkovich <ienkovich@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-01-20 14:51:36 +0000 |
---|---|---|
committer | ienkovich <ienkovich@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-01-20 14:51:36 +0000 |
commit | f5ce2ec3e7f58e769360896fafcedbc617df6838 (patch) | |
tree | b30c68f59112dc808c2542b3bb5c7711a51100a3 /libmpx | |
parent | 58219d13f317ad494e99c41fa690c5fef82075b7 (diff) | |
download | gcc-f5ce2ec3e7f58e769360896fafcedbc617df6838.tar.gz |
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
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 d028bcafde5..fcf764c6f3f 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 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); } } |