1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-30 13:01:23 +03:00

packet: Replace PRIdS with ANSI C99 %zu

Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
Reviewed-by: Jakub Jelen <jjelen@redhat.com>
This commit is contained in:
Andreas Schneider
2020-01-15 17:18:53 +01:00
parent 73f383a2e6
commit faedadf2eb
2 changed files with 3 additions and 3 deletions

View File

@@ -112,7 +112,7 @@ int ssh_packet_decrypt(ssh_session session,
ssh_set_error(session,
SSH_FATAL,
"Cryptographic functions must be used on multiple of "
"blocksize (received %" PRIdS ")",
"blocksize (received %zu)",
encrypted_size);
return SSH_ERROR;
}