Skip to content

Commit

Permalink
Fixed a couple of examples comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeDP committed Mar 29, 2018
1 parent 7b5ba7a commit 2f2a78a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
3 changes: 1 addition & 2 deletions Samples/Easy/doggo.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,7 @@ static void destroy(void) {
}

/*
* Our default poll callback.
* Note that message_t->msg/sender are unused for now.
* Default poll callback
*/
static void receive(const msg_t *msg, const void *userdata) {
if (msg->msg) {
Expand Down
3 changes: 1 addition & 2 deletions Samples/Easy/pippo.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ static void destroy(void) {
}

/*
* Our default poll callback.
* Note that message_t->msg/sender are unused for now.
* Default poll callback
*/
static void receive(const msg_t *msg, const void *userdata) {
if (!msg->msg) {
Expand Down
3 changes: 1 addition & 2 deletions Samples/MultiCtx/a.c
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,7 @@ static void destroy(void) {
}

/*
* Our default poll callback.
* Note that message_t->msg/sender are unused for now.
* Default poll callback
*/
static void receive(const msg_t *msg, const void *userdata) {
if (!msg->msg) {
Expand Down
3 changes: 1 addition & 2 deletions Samples/MultiCtx/b.c
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,7 @@ static void destroy(void) {
}

/*
* Our default poll callback.
* Note that message_t->msg/sender are unused for now.
* Default poll callback
*/
static void receive(const msg_t *msg, const void *userdata) {
if (!msg->msg) {
Expand Down

0 comments on commit 2f2a78a

Please sign in to comment.