C_LoadModule(): Fix compiler warning

libpkcs11.c:58: warning: format ‘%lx’ expects type ‘long unsigned int’,
but argument 3 has type ‘int’


git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@4858 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
ludovic.rousseau 2010-11-06 16:49:00 +00:00
parent 6f5f29eee9
commit 98fdeaa0b6
1 changed files with 1 additions and 2 deletions

View File

@ -30,8 +30,7 @@ void *
C_LoadModule(const char *mspec, CK_FUNCTION_LIST_PTR_PTR funcs)
{
sc_pkcs11_module_t *mod;
CK_RV (*c_get_function_list)(CK_FUNCTION_LIST_PTR_PTR);
int rv;
CK_RV rv, (*c_get_function_list)(CK_FUNCTION_LIST_PTR_PTR);
lt_dlinit();