Avoid compiler warning in vector_position().

This commit is contained in:
Gerald Pfeifer 2004-04-06 20:13:37 +00:00 committed by Alexandre Julliard
parent 9f2627e8fc
commit 03a4f56824
1 changed files with 1 additions and 0 deletions

View File

@ -203,6 +203,7 @@ static unsigned vector_position(const struct vector* v, const void* elt)
}
}
assert(0);
return 0;
}
void* vector_iter_up(const struct vector* v, void* elt)