aboutsummaryrefslogtreecommitdiff
path: root/src/packet_crypt.c
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2020-01-15 17:18:53 +0100
committerAndreas Schneider <asn@cryptomilk.org>2020-02-12 09:39:06 +0100
commitfaedadf2eb4bbc960b5fd18b96e963c13e034174 (patch)
tree04a8507c451756fbe0d14bbdd5dafeadf813621a /src/packet_crypt.c
parent73f383a2e6d6351379e749d7d662dab3fdee396c (diff)
downloadlibssh-faedadf2eb4bbc960b5fd18b96e963c13e034174.tar.gz
libssh-faedadf2eb4bbc960b5fd18b96e963c13e034174.tar.xz
libssh-faedadf2eb4bbc960b5fd18b96e963c13e034174.zip
packet: Replace PRIdS with ANSI C99 %zu
Signed-off-by: Andreas Schneider <asn@cryptomilk.org> Reviewed-by: Jakub Jelen <jjelen@redhat.com>
Diffstat (limited to 'src/packet_crypt.c')
-rw-r--r--src/packet_crypt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/packet_crypt.c b/src/packet_crypt.c
index 95d438c8..b248ae85 100644
--- a/src/packet_crypt.c
+++ b/src/packet_crypt.c
@@ -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;
}