diff options
Diffstat (limited to 'src/include/CredentialsCache.h')
-rw-r--r-- | src/include/CredentialsCache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/CredentialsCache.h b/src/include/CredentialsCache.h index 829a8979d..84783ae51 100644 --- a/src/include/CredentialsCache.h +++ b/src/include/CredentialsCache.h @@ -1514,8 +1514,8 @@ CCACHE_API cc_int32 cc_initialize (cc_context_t *out_context, #define cc_ccache_lock(ccache, type, block) \ ((ccache) -> functions -> lock (ccache, type, block)) /*! Helper macro for cc_ccache_f unlock() */ -#define cc_ccache_unlock(ccache, unlock) \ - ((ccache) -> functions -> unlock (ccache, unlock)) +#define cc_ccache_unlock(ccache) \ + ((ccache) -> functions -> unlock (ccache)) /*! Helper macro for cc_ccache_f get_last_default_time() */ #define cc_ccache_get_last_default_time(ccache, last_default_time) \ ((ccache) -> functions -> get_last_default_time (ccache, last_default_time)) |