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

Remove useless volatile keyword

In this case, volatile was both incorrect (volatile does nothing about
thread synchronization) and not required (there is an explicit lock).
parent 3008c478
......@@ -99,7 +99,7 @@
* The evil global variables. We handle them with care, don't worry.
*****************************************************************************/
static libvlc_int_t * p_static_vlc = NULL;
static volatile unsigned int i_instances = 0;
static unsigned i_instances = 0;
static bool b_daemon = false;
......
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