Skip to content

Fix warnings around volatile qualifiers

Carlos Garnacho requested to merge wip/carlosg/volatile-warnings into master
    As documented in g_once_init_enter(): "While @location has a volatile qualifier,
    this is a historical artifact and the pointer passed to it should not be
    volatile.". And effectively this now warns with modern glibc.
    
    Drop the "volatile" qualifier from these static variables as it's expected.

Merge request reports