Skip to content
  • Michel Dänzer's avatar
    Xephyr: Cast "red" to char* for xcb_aux_parse_color · 42876044
    Michel Dänzer authored and Peter Hutterer's avatar Peter Hutterer committed
    xcb_aux_parse_color takes a non-const pointer, even though it doesn't
    modify the string or take ownership of its memory.
    
    Avoids the following warning from GCC:
    
    ../hw/kdrive/ephyr/hostx.c: In function ‘hostx_init’:
    ../hw/kdrive/ephyr/hostx.c:683:30: warning: passing argument 1 of ‘xcb_aux_parse_color’ discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]
      683 |     if (!xcb_aux_parse_color("red", &red, &green, &blue)) {
          |                              ^~~~~
    In file included from ../hw/kdrive/ephyr/hostx.c:50:
    /usr/include/xcb/xcb_aux.h:194:27: note: expected ‘char *’ but argument is of type ‘const char *’
      194 | xcb_aux_parse_color(char *color_name,
          |                     ~~~~~~^~~~~~~~~~
    42876044