Skip to content
Snippets Groups Projects
Commit c1c6287e authored by Ludwig Knüpfer's avatar Ludwig Knüpfer
Browse files

fix nativenet shell comamnd printf

parent ef315ed6
No related branches found
No related tags found
No related merge requests found
...@@ -103,7 +103,7 @@ void _nativenet_send_handler(char *pkt) ...@@ -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); 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); msg_send_receive(&mesg, &mesg, transceiver_pid);
response = mesg.content.value; response = mesg.content.value;
printf("[nativenet] Packet sent: %"PRIu32"\n", response); printf("[nativenet] Packet sent: %"PRIi8"\n", response);
return; return;
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment