Module: wine Branch: master Commit: a29ba27361ab9d175e5e8c4c2f8be41d4a7a0da6 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a29ba27361ab9d175e5e8c4c2f...
Author: Juan Lang juan.lang@gmail.com Date: Thu Dec 18 14:50:56 2008 -0800
crypt32: Make a function static.
---
dlls/crypt32/context.c | 2 +- dlls/crypt32/crypt32_private.h | 2 -- 2 files changed, 1 insertions(+), 3 deletions(-)
diff --git a/dlls/crypt32/context.c b/dlls/crypt32/context.c index fa08581..fa7922f 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 b0f6101..46d4797 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);
/**