aboutsummaryrefslogtreecommitdiff
path: root/src/exception.c
diff options
context:
space:
mode:
authorGareth McMullin2015-03-22 14:05:12 -0700
committerGareth McMullin2015-03-22 14:05:12 -0700
commit5ab8564ff67583ac8df977bb6efca047b12e0aed (patch)
treed81f92777aa968cce6f674e747e747fee9be0a9a /src/exception.c
parent588bad34ba2386737bec4bf4daf50633b0a8fe98 (diff)
Clean up handling of lost targets using new exceptions mechanism.
Diffstat (limited to 'src/exception.c')
-rw-r--r--src/exception.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exception.c b/src/exception.c
index 33e3869..3d43f99 100644
--- a/src/exception.c
+++ b/src/exception.c
@@ -34,6 +34,6 @@ void raise_exception(uint32_t type, const char *msg)
longjmp(e->jmpbuf, type);
}
}
- PLATFORM_FATAL_ERROR(type);
+ abort();
}