Skip to content
  • Benjamin Otte's avatar
    css: Fix GtkCssChange enum · 6c862f22
    Benjamin Otte authored
    Previously, the (1<<31) value evaluated to the 64bit value
      0xFFFFFFFF80000000
    instead of
      0x0000000080000000
    Avoid this by explicitly casting the value to unsigned long long.
    
    Also cast all values to unsigned long long to achieve consistency
    and hopefully in the future get new values added the same way.
    6c862f22