Skip to content

Commit a9848b9

Browse files
committed
Fixed a couple of comments.
1 parent 2a61147 commit a9848b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Lib/queue.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ queue_ret_code queue_iterate(const queue_t *q, const queue_cb fn, void *userptr)
7676
return rc;
7777
}
7878
if (rc > QUEUE_OK) {
79-
/* Stop right now with MAP_OK */
79+
/* Stop right now with QUEUE_OK */
8080
return QUEUE_OK;
8181
}
8282
elem = elem->prev;

Lib/stack.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ stack_ret_code stack_iterate(const stack_t *s, const stack_cb fn, void *userptr)
7474
return rc;
7575
}
7676
if (rc > STACK_OK) {
77-
/* Stop right now with MAP_OK */
77+
/* Stop right now with STACK_OK */
7878
return STACK_OK;
7979
}
8080
elem = elem->prev;

0 commit comments

Comments
 (0)