Commit bf17d60f authored by Greg Williams's avatar Greg Williams
Browse files

Merge branch 'master' of github.com:Seagate/kinetic-c

parents fc2aad84 2ad9637c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -113,7 +113,7 @@ void *casq_pop(struct casq *q) {
            l->data = NULL;
            for (;;) {              /* spin, push */
                l->next = q->free_links;
                if (ATOMIC_BOOL_COMPARE_AND_SWAP(&q->free_links, q->free_links, l)) {
                if (ATOMIC_BOOL_COMPARE_AND_SWAP(&q->free_links, l->next, l)) {
                    break;
                }
            }