fix parameter type

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@2507 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
nils 2005-08-22 09:22:25 +00:00
parent b5e2a2afff
commit 8ba443d1d9
2 changed files with 2 additions and 2 deletions

View File

@ -1122,7 +1122,7 @@ int _sc_check_forced_protocol(sc_context_t *ctx, u8 *atr, size_t atr_len, unsign
return ok;
}
scconf_block *_get_conf_block(sc_context_t *ctx, const char *name1, const char *name2, u8 priority)
scconf_block *_get_conf_block(sc_context_t *ctx, const char *name1, const char *name2, int priority)
{
int i;
scconf_block *conf_block = NULL;

View File

@ -87,7 +87,7 @@ struct sc_algorithm_info * _sc_card_find_rsa_alg(struct sc_card *card,
int sc_asn1_read_tag(const u8 ** buf, size_t buflen, unsigned int *cla_out,
unsigned int *tag_out, size_t *taglen);
scconf_block *_get_conf_block(sc_context_t *ctx, const char *name1, const char *name2, u8 priority);
scconf_block *_get_conf_block(sc_context_t *ctx, const char *name1, const char *name2, int priority);
#ifdef __cplusplus
}