1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #2541 from OlegHahm/tiny_ccnl_dbg_fix

ccnl: correct debug output
This commit is contained in:
Peter Kietzmann 2015-03-05 16:32:35 +01:00
commit 0ae274d5c5

View File

@ -53,7 +53,7 @@ static int appserver_sent_content(uint8_t *buf, int len, kernel_pid_t from)
kernel_pid_t dest_pid = from;
DEBUGMSG(1, "sending msg to pid=%" PRIkernel_pid "\n", dest_pid);
int ret = msg_send(&m, dest_pid);
DEBUGMSG(1, "msg_reply returned: %d\n", ret);
DEBUGMSG(1, "msg_send returned: %d\n", ret);
return ret;
}