tests: Missing return statement

Change-Id: I4fae9f84a83af280846b07eaa139ff4a05784a2e
This commit is contained in:
Martin Hauke 2020-02-15 23:01:39 +01:00
parent 67d32a0386
commit c593da5d45
2 changed files with 2 additions and 1 deletions

View File

@ -326,7 +326,7 @@ static int hnb_test_nas_rx_auth_req(struct hnb_test *hnb, struct gsm48_hdr *gh,
if (len < sizeof(*ar)) {
printf("GSM48 Auth Req does not fit.\n");
return;
return -1;
}
printf(" :) Authentication Request :)\n");

View File

@ -88,6 +88,7 @@ int test_common_init(void)
log_set_print_filename(osmo_stderr_target, 0);
log_set_use_color(osmo_stderr_target, 0);
return rc;
}
void test_common_cleanup(void)