mirror of
https://git.libssh.org/projects/libssh.git
synced 2025-11-27 13:21:11 +03:00
wrapper: Fix size type
Signed-off-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
@@ -148,7 +148,8 @@ struct ssh_crypto_struct *crypto_new(void) {
|
|||||||
|
|
||||||
void crypto_free(struct ssh_crypto_struct *crypto)
|
void crypto_free(struct ssh_crypto_struct *crypto)
|
||||||
{
|
{
|
||||||
int i;
|
size_t i;
|
||||||
|
|
||||||
if (crypto == NULL) {
|
if (crypto == NULL) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user