Skip to content
Snippets Groups Projects
Commit 1c1592ad authored by Philipp Spilger's avatar Philipp Spilger
Browse files

Fix bool test on use of _Bool instead of __bool as bool

Depends-On: 5615
Change-Id: Idf9e5a42695da2903eca16c5d024902b113d5a80
parent a81ccc81
No related branches found
No related tags found
No related merge requests found
......@@ -13,8 +13,8 @@
void test_size()
{
libnux_testcase_begin("size == 4B");
libnux_test_equal(sizeof(bool), 4);
libnux_testcase_begin("size == 1B");
libnux_test_equal(sizeof(bool), 1);
libnux_testcase_end();
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment