aboutsummaryrefslogtreecommitdiff
path: root/calibrate.c
diff options
context:
space:
mode:
Diffstat (limited to 'calibrate.c')
-rw-r--r--calibrate.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/calibrate.c b/calibrate.c
index 9a43696..cc62914 100644
--- a/calibrate.c
+++ b/calibrate.c
@@ -188,7 +188,7 @@ void * SurviveThread(void *jnk)
if( !ctx )
{
fprintf( stderr, "Fatal. Could not start\n" );
- return 1;
+ exit( 1 );
}
SurviveThreadLoaded=1;
@@ -199,6 +199,7 @@ void * SurviveThread(void *jnk)
}
survive_close( ctx );
+ return 0;
}