1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-22 06:42:03 +00:00

misc/ring: fix comment typo

This commit is contained in:
Kevin Mitchell 2017-07-09 00:56:07 -07:00
parent 6666b25b73
commit 0b412bb60b

View File

@ -27,8 +27,8 @@
struct mp_ring {
uint8_t *buffer;
/* Positions of the first readable/writeable chunks. Do not read this
* fields but use the atomic private accessors `mp_ring_get_wpos`
/* Positions of the first readable/writeable chunks. Do not read these
* fields. Use the atomic private accessors `mp_ring_get_wpos`
* and `mp_ring_get_rpos`. */
atomic_ullong rpos, wpos;
};