diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/stdc++-minimal.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/stdc++-minimal.cpp b/lib/stdc++-minimal.cpp index 50b1947..c3b0559 100644 --- a/lib/stdc++-minimal.cpp +++ b/lib/stdc++-minimal.cpp @@ -29,13 +29,13 @@ extern "C" void __cxa_deleted_virtual(void) __attribute__ ((__noreturn__)); void __cxa_pure_virtual(void) { // this only works with serialio, it won't work with usbio // because we would need to call usbio_task() ... - printf("PANIC: __cxa_pure_virtual() got called ..."); + printf("PANIC: __cxa_pure_virtual() got called ...\r\n"); for(;;); } void __cxa_deleted_virtual(void) { // this only works with serialio, it won't work with usbio // because we would need to call usbio_task() ... - printf("PANIC: __cxa_deleted_virtual() got called ..."); + printf("PANIC: __cxa_deleted_virtual() got called ...\r\n"); for(;;); } |