Commit a29ba273 authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

crypt32: Make a function static.

parent 0eeb0420
......@@ -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;
......
......@@ -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);
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment