Skip to content

Commit

Permalink
Fixed a couple of comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
FedeDP committed Sep 4, 2019
1 parent 2a61147 commit a9848b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Lib/queue.c
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ queue_ret_code queue_iterate(const queue_t *q, const queue_cb fn, void *userptr)
return rc;
}
if (rc > QUEUE_OK) {
/* Stop right now with MAP_OK */
/* Stop right now with QUEUE_OK */
return QUEUE_OK;
}
elem = elem->prev;
Expand Down
2 changes: 1 addition & 1 deletion Lib/stack.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ stack_ret_code stack_iterate(const stack_t *s, const stack_cb fn, void *userptr)
return rc;
}
if (rc > STACK_OK) {
/* Stop right now with MAP_OK */
/* Stop right now with STACK_OK */
return STACK_OK;
}
elem = elem->prev;
Expand Down

0 comments on commit a9848b9

Please sign in to comment.