summaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authorKevin Mitchell <kevmitch@gmail.com>2017-07-09 00:56:07 -0700
committerKevin Mitchell <kevmitch@gmail.com>2017-07-09 13:46:13 -0700
commit0b412bb60b8fe225aecca8747dfb460152cffa33 (patch)
tree8f39fa180e64d76e35cddb6e3807454bfb87797d /misc
parent6666b25b7363287ec7824f4da5e2f9e96b45a81f (diff)
downloadmpv-0b412bb60b8fe225aecca8747dfb460152cffa33.tar.bz2
mpv-0b412bb60b8fe225aecca8747dfb460152cffa33.tar.xz
misc/ring: fix comment typo
Diffstat (limited to 'misc')
-rw-r--r--misc/ring.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/ring.c b/misc/ring.c
index 3262fc1cd6..58918a40a4 100644
--- a/misc/ring.c
+++ b/misc/ring.c
@@ -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;
};