1
0
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:
Andreas Schneider
2018-09-03 17:40:35 +02:00
parent 9c5d2d4543
commit f8e68b92b8

View File

@@ -148,7 +148,8 @@ struct ssh_crypto_struct *crypto_new(void) {
void crypto_free(struct ssh_crypto_struct *crypto)
{
int i;
size_t i;
if (crypto == NULL) {
return;
}