dont use bool since its c99

This commit is contained in:
Love Hornquist Astrand
2011-09-30 11:49:01 +02:00
parent b76f6f1e93
commit 3c0e9b8fd1
2 changed files with 2 additions and 2 deletions

View File

@@ -218,7 +218,7 @@ heim_array_delete_value(heim_array_t array, size_t idx)
*/
void
heim_array_filter(heim_array_t array, bool (^block)(heim_object_t))
heim_array_filter(heim_array_t array, int (^block)(heim_object_t))
{
size_t n = 0;