From 03a4f568242f32a1779170f6ac09960a55394702 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Tue, 6 Apr 2004 20:13:37 +0000 Subject: [PATCH] Avoid compiler warning in vector_position(). --- dlls/dbghelp/storage.c | 1 + 1 file changed, 1 insertion(+) diff --git a/dlls/dbghelp/storage.c b/dlls/dbghelp/storage.c index 5fce730333e..6d2ad4f9bc3 100644 --- a/dlls/dbghelp/storage.c +++ b/dlls/dbghelp/storage.c @@ -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) -- 2.11.4.GIT