1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

examples/dtls-echo: fix debug message

This commit is contained in:
Sebastian Meiling 2019-12-13 23:29:40 +01:00
parent c04b80ecbb
commit cdda4e423e

View File

@ -161,7 +161,7 @@ static int _peer_get_psk_info_handler(struct dtls_context_t *ctx,
switch (type) {
case DTLS_PSK_IDENTITY:
if (id_len) {
dtls_debug("got psk_identity_hint: '%.*s'\n", id_len, id);
dtls_debug("got psk_identity_hint: '%.*s'\n", (int)id_len, id);
}
if (result_length < psk_id_length) {