Skip to content

Commit

Permalink
ccnl: fix argument passing in example app
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegHahm committed Dec 16, 2014
1 parent 5cf625f commit a3d2f4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/ccn-lite-client/main.c
Expand Up @@ -73,7 +73,7 @@ static void riot_ccn_appserver(int argc, char **argv)
_appserver_pid = thread_create(
appserver_stack, sizeof(appserver_stack),
PRIORITY_MAIN - 1, CREATE_STACKTEST,
ccnl_riot_appserver_start, (void *) _relay_pid, "appserver");
ccnl_riot_appserver_start, (void *) &_relay_pid, "appserver");
DEBUG("ccn-lite appserver on thread_id %" PRIkernel_pid "...\n", _appserver_pid);
}
#endif
Expand Down

0 comments on commit a3d2f4a

Please sign in to comment.