fix return code.

This commit is contained in:
Marcello Stanisci 2018-03-03 01:08:30 +01:00
parent 27b0f3769c
commit 5156de1195
No known key found for this signature in database
GPG Key ID: 8D526861953F4C0F

View File

@ -141,9 +141,9 @@ main (int argc,
GNUNET_free (bank_url);
if (GNUNET_OK == ret)
return 1;
return 0;
return 0;
return 1;
}
/* end of test_bank_api_twisted.c */