Skip to content

Commit

Permalink
fix msg ptr usage
Browse files Browse the repository at this point in the history
  • Loading branch information
astralien3000 committed May 29, 2018
1 parent 83e43ea commit 50f377c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ static int _process_msg(ndn_app_t* handle, msg_t* msg)

case GNRC_NETAPI_MSG_TYPE_GET:
case GNRC_NETAPI_MSG_TYPE_SET:
msg_reply(&msg, &reply);
msg_reply(msg, &reply);
break;
default:
DEBUG("ndn_app: unknown msg type %u (pid=%" PRIkernel_pid ")\n",
Expand Down

0 comments on commit 50f377c

Please sign in to comment.