summaryrefslogtreecommitdiff
path: root/lib/checksum_test.c
diff options
context:
space:
mode:
authorPavel Tvrdik <pawel.tvrdik@gmail.com>2016-11-11 17:43:09 +0100
committerPavel Tvrdik <pawel.tvrdik@gmail.com>2016-11-11 17:43:09 +0100
commit5e3cd0e5b56e6c58cfba4d0d38fbbbed3657889d (patch)
tree3e96b946c06176731b1d2ba27605dc257ef9c7bc /lib/checksum_test.c
parentfa71b268a8d15d579f50d7f4f92e2edb3b431e05 (diff)
Birdtest: Replace BT_SUCCESS and BT_FAILURE with 1 and 0
Diffstat (limited to 'lib/checksum_test.c')
-rw-r--r--lib/checksum_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/checksum_test.c b/lib/checksum_test.c
index ae5a7f31..7e5658eb 100644
--- a/lib/checksum_test.c
+++ b/lib/checksum_test.c
@@ -60,7 +60,7 @@ t_calculate(void)
bt_assert(sum_calculated == sum_expected);
- return BT_SUCCESS;
+ return 1;
}
static int
@@ -78,7 +78,7 @@ t_verify(void)
bt_assert(ipsum_verify(a, sizeof(a), NULL));
- return BT_SUCCESS;
+ return 1;
}