summaryrefslogtreecommitdiff
path: root/pjlib/src/pjlib-test/exception.c
diff options
context:
space:
mode:
Diffstat (limited to 'pjlib/src/pjlib-test/exception.c')
-rw-r--r--pjlib/src/pjlib-test/exception.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pjlib/src/pjlib-test/exception.c b/pjlib/src/pjlib-test/exception.c
index 9a479a1b..94ab861a 100644
--- a/pjlib/src/pjlib-test/exception.c
+++ b/pjlib/src/pjlib-test/exception.c
@@ -54,13 +54,13 @@
static int throw_id_1(void)
{
PJ_THROW( ID_1 );
- return -1;
+ PJ_UNREACHED(return -1;)
}
static int throw_id_2(void)
{
PJ_THROW( ID_2 );
- return -1;
+ PJ_UNREACHED(return -1;)
}