diff --git a/dlls/crypt32/context.c b/dlls/crypt32/context.c index fa085817ac6..fa7922f84e0 100644 --- a/dlls/crypt32/context.c +++ b/dlls/crypt32/context.c @@ -288,7 +288,7 @@ void ContextList_Delete(struct ContextList *list, void *context) list->contextInterface->free(context); } -void ContextList_Empty(struct ContextList *list) +static void ContextList_Empty(struct ContextList *list) { struct list *entry, *next; diff --git a/dlls/crypt32/crypt32_private.h b/dlls/crypt32/crypt32_private.h index b0f6101e793..46d4797b680 100644 --- a/dlls/crypt32/crypt32_private.h +++ b/dlls/crypt32/crypt32_private.h @@ -379,8 +379,6 @@ void *ContextList_Enum(struct ContextList *list, void *pPrev); void ContextList_Delete(struct ContextList *list, void *context); -void ContextList_Empty(struct ContextList *list); - void ContextList_Free(struct ContextList *list); /**