mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-05-31 08:07:20 +00:00
psa: Fix Doxygen comment on psa_get_key_from_slot
We failed all.sh on the "test: doxygen markup outside doxygen blocks" due to doxygen markup being outside a Doxygen block. Add an extra `*` to the psa_get_key_from_slot comment to denote the comment as a Doxygen comment.
This commit is contained in:
parent
2a91d612f5
commit
b4fa8c9c6d
|
@ -371,9 +371,9 @@ static psa_status_t psa_get_empty_key_slot( psa_key_slot_t key,
|
||||||
return( status );
|
return( status );
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Retrieve a slot which must contain a key. The key must have allow all
|
/** Retrieve a slot which must contain a key. The key must have allow all the
|
||||||
* the usage flags set in \p usage. If \p alg is nonzero, the key must
|
* usage flags set in \p usage. If \p alg is nonzero, the key must allow
|
||||||
* allow operations with this algorithm. */
|
* operations with this algorithm. */
|
||||||
static psa_status_t psa_get_key_from_slot( psa_key_slot_t key,
|
static psa_status_t psa_get_key_from_slot( psa_key_slot_t key,
|
||||||
key_slot_t **p_slot,
|
key_slot_t **p_slot,
|
||||||
psa_key_usage_t usage,
|
psa_key_usage_t usage,
|
||||||
|
|
Loading…
Reference in a new issue