From fba384ac5879aa2de6b5374962aa2a2377aa752e Mon Sep 17 00:00:00 2001 From: Anderson Toshiyuki Sasaki Date: Fri, 14 Jun 2019 12:04:33 +0200 Subject: [PATCH] tests/torture_rekey: Replace long long with uint64_t Signed-off-by: Anderson Toshiyuki Sasaki Reviewed-by: Andreas Schneider --- tests/client/torture_rekey.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/client/torture_rekey.c b/tests/client/torture_rekey.c index d9d9f6a9..b8e93768 100644 --- a/tests/client/torture_rekey.c +++ b/tests/client/torture_rekey.c @@ -153,7 +153,7 @@ static void torture_rekey_send(void **state) int rc; char data[256]; unsigned int i; - long long bytes = 2048; /* 2KB (more than the authentication phase) */ + uint64_t bytes = 2048; /* 2KB (more than the authentication phase) */ struct ssh_crypto_struct *c = NULL; unsigned char *secret_hash = NULL; @@ -234,7 +234,7 @@ static void session_setup_sftp(void **state) assert_non_null(s->ssh.tsftp); } -long long bytes = 2048; /* 2KB */ +uint64_t bytes = 2048; /* 2KB */ static int session_setup_sftp_client(void **state) {