diff options
Diffstat (limited to 'src/backend/lib/ilist.c')
-rw-r--r-- | src/backend/lib/ilist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/lib/ilist.c b/src/backend/lib/ilist.c index 957a1181227..eb23fa1c687 100644 --- a/src/backend/lib/ilist.c +++ b/src/backend/lib/ilist.c @@ -28,7 +28,7 @@ * * It is not allowed to delete a 'node' which is is not in the list 'head' * - * Caution: this is O(n) + * Caution: this is O(n); consider using slist_delete_current() instead. */ void slist_delete(slist_head *head, slist_node *node) |