Skip to content
Snippets Groups Projects
Commit 6615aaaa authored by Marek Vavruša's avatar Marek Vavruša
Browse files

generic/array: shot myself to the foot

parent 91a2945e
No related branches found
No related tags found
No related merge requests found
......@@ -133,10 +133,9 @@ static inline void array_std_free(void *baton, void *p)
/**
* Pop value from the end of the array.
* @return 0 on success, <0 on failure
*/
#define array_pop(array) \
array_del((array), (array).len - 1)
(array).len -= 1
/**
* Remove value at given index.
......
......@@ -45,8 +45,7 @@ static void test_array(void **state)
/* Delete elements. */
array_del(arr, 0);
for (size_t i = arr.len; --i;) {
ret = array_pop(arr);
assert_true(ret == 0);
array_pop(arr);
}
/* Overfill. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment