srdja / Collections-C

A library of generic data structures for the C language.
http://srdja.github.io/Collections-C
GNU Lesser General Public License v3.0
2.8k stars 328 forks source link

Fix #149: deque_remove_at error #170

Closed saulvaldelvira closed 10 months ago

saulvaldelvira commented 10 months ago

The deque_remove_at function was returning an incorrect element in certain situations. The correct element is the one at index "p"

srdja commented 10 months ago

@saulvaldelvira Thanks for spotting this!

saulvaldelvira commented 10 months ago

You're welcome!