Commit 02102ee3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

reference count should really be unsigned

parent 4595fe88
...@@ -86,7 +86,7 @@ struct picture_t ...@@ -86,7 +86,7 @@ struct picture_t
* These properties can be modified using the video output thread API, * These properties can be modified using the video output thread API,
* but should never be written directly */ * but should never be written directly */
/**@{*/ /**@{*/
int i_refcount; /**< link reference counter */ unsigned i_refcount; /**< link reference counter */
mtime_t date; /**< display date */ mtime_t date; /**< display date */
vlc_bool_t b_force; vlc_bool_t b_force;
/**@}*/ /**@}*/
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment