design: refcounting: fix typo
authorTim-Philipp Müller <tim@centricular.com>
Sun, 25 Nov 2018 15:11:55 +0000 (15:11 +0000)
committerTim-Philipp Müller <tim@centricular.com>
Sun, 25 Nov 2018 15:13:05 +0000 (15:13 +0000)
Fixes #26.

markdown/design/MT-refcounting.md

index a892fa6..be0eb7f 100644 (file)
@@ -362,7 +362,7 @@ decide if we are still iterating the right list.
 GST_OBJECT_LOCK (lock);
 /* grab list and cookie */
 cookie = object->list_cookie;
-list = object-list;
+list = object->list;
 while (list) {
   GstObject *item = GST_OBJECT (list->data);
   /* need to ref the item before releasing the lock */