Commit e15f0e53 by Ilya Enkovich Committed by Ilya Enkovich

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

libmpx/

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

From-SVN: r232619
parent 889d5698
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
......
......@@ -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);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment