]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
mpxrt.c (handler): Fix verbosity for error message.
authorIlya Enkovich <enkovich.gnu@gmail.com>
Wed, 20 Jan 2016 14:51:36 +0000 (14:51 +0000)
committerIlya Enkovich <ienkovich@gcc.gnu.org>
Wed, 20 Jan 2016 14:51:36 +0000 (14:51 +0000)
libmpx/

* mpxrt/mpxrt.c (handler): Fix verbosity for error message.

From-SVN: r232619

libmpx/ChangeLog
libmpx/mpxrt/mpxrt.c

index d028bcafde5a230878abf372d6b870103f79d1f1..fcf764c6f3f1adb7f58a21ee3a805e92dc0588df 100644 (file)
@@ -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
index bcdd3a63bd248cb02d5f6007523fda4f8c34dcf8..b52906bb9e8950f411b93897b7803584c4994c95 100644 (file)
@@ -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);
     }
 }