X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=tests%2Flib%2Ftest_bt_notification_heap.c;h=531ddf680464a4aa3ab6b4173ff52956bd275bdd;hb=f42867e2d049c1e7cad50cd097290a3adef8d54c;hp=d4767b1b93f5e7b0401777079756373480e615c0;hpb=f6ccaed94e575af57fe6bf38154771bee4871a2a;p=babeltrace.git diff --git a/tests/lib/test_bt_notification_heap.c b/tests/lib/test_bt_notification_heap.c index d4767b1b..531ddf68 100644 --- a/tests/lib/test_bt_notification_heap.c +++ b/tests/lib/test_bt_notification_heap.c @@ -45,8 +45,7 @@ void bt_notification_init(struct bt_notification *notification, enum bt_notification_type type, bt_object_release_func release) { - assert(type > BT_NOTIFICATION_TYPE_ALL && - type < BT_NOTIFICATION_TYPE_NR); + assert(type > 0 && type < BT_NOTIFICATION_TYPE_NR); notification->type = type; bt_object_init(¬ification->base, release); }