fixed gcc 8 compiler waring

closes https://github.com/OpenSC/OpenSC/pull/1474
This commit is contained in:
Frank Morgner 2018-09-12 13:09:12 +02:00
parent 430a9b3f5a
commit 66fe060363
1 changed files with 2 additions and 2 deletions

View File

@ -1133,7 +1133,7 @@ gids_select_key_reference(sc_card_t *card, sc_pkcs15_prkey_info_t* key_info) {
SC_FUNC_RETURN(card->ctx, SC_LOG_DEBUG_NORMAL, SC_ERROR_INVALID_ARGUMENTS);
}
}
snprintf(ch_tmp, sizeof(ch_tmp), "3FFFB0%02X", key_info->key_reference);
snprintf(ch_tmp, sizeof(ch_tmp), "3FFFB0%02X", (u8) (0xFF & key_info->key_reference));
sc_format_path(ch_tmp, &(key_info->path));
return SC_SUCCESS;
}
@ -1477,7 +1477,7 @@ static int gids_delete_key_file(sc_card_t *card, int containernum) {
int r;
char ch_tmp[10];
sc_path_t cpath;
snprintf(ch_tmp, sizeof(ch_tmp), "3FFFB0%02X",containernum + GIDS_FIRST_KEY_IDENTIFIER);
snprintf(ch_tmp, sizeof(ch_tmp), "3FFFB0%02X", (u8) (0xFF & (containernum + GIDS_FIRST_KEY_IDENTIFIER)));
sc_format_path(ch_tmp, &cpath);
r = gids_select_file(card, &cpath, NULL);
SC_TEST_RET(card->ctx, SC_LOG_DEBUG_NORMAL, r, "unable to select the key file");