Skip to content
  • Pekka Paalanen's avatar
    libweston: constify data_source_interface · 82850057
    Pekka Paalanen authored
    
    
    Found mutable global variables with
     $ grep -P '^static (?!const).*[=;]' -- compositor libweston shared
    
    Mutable global or static variables make it harder to run several
    compositor instances in the same process. That is what the test suite
    would probably need to do to test wayland-backend.
    
    This one variable does not need to be mutable.
    
    Signed-off-by: default avatarPekka Paalanen <pekka.paalanen@collabora.com>
    82850057