From c1c6287ef7397c133511e15107941e3a2d1e206c Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann <ludwig.ortmann@fu-berlin.de> Date: Sat, 21 Dec 2013 16:58:51 +0100 Subject: [PATCH] fix nativenet shell comamnd printf --- sys/shell/commands/sc_nativenet.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/shell/commands/sc_nativenet.c b/sys/shell/commands/sc_nativenet.c index e3cd4856e8..3fa30712cd 100644 --- a/sys/shell/commands/sc_nativenet.c +++ b/sys/shell/commands/sc_nativenet.c @@ -103,7 +103,7 @@ void _nativenet_send_handler(char *pkt) printf("[nativenet] Sending packet of length %"PRIu16" to %"PRIu16": %s\n", p.length, p.dst, (char*) p.data); msg_send_receive(&mesg, &mesg, transceiver_pid); response = mesg.content.value; - printf("[nativenet] Packet sent: %"PRIu32"\n", response); + printf("[nativenet] Packet sent: %"PRIi8"\n", response); return; } } -- GitLab