diff options
Diffstat (limited to 'tests/thread_test.c')
-rw-r--r-- | tests/thread_test.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/thread_test.c b/tests/thread_test.c index 760b72fc5d1..def133f4a3f 100644 --- a/tests/thread_test.c +++ b/tests/thread_test.c @@ -176,9 +176,8 @@ static void get_options(int argc, char **argv) { int ho_error; - load_defaults("my",load_default_groups,&argc,&argv); - - if ((ho_error=handle_options(&argc, &argv, my_long_options, get_one_option))) + if ((ho_error= load_defaults("my",load_default_groups,&argc,&argv)) || + (ho_error= handle_options(&argc, &argv, my_long_options, get_one_option))) exit(ho_error); free_defaults(argv); |