Skip to content
  • Alan Coopersmith's avatar
    Handle -Wsign-compare warnings · 43532f21
    Alan Coopersmith authored
    
    
    xsetroot.c: In function ‘CreateCursorFromFiles’:
    xsetroot.c:426:31: warning: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Wsign-compare]
      426 |     if ((x_hot < 0) || (x_hot >= width) ||
          |                               ^~
    xsetroot.c:427:31: warning: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Wsign-compare]
      427 |         (y_hot < 0) || (y_hot >= height)) {
          |                               ^~
    
    Signed-off-by: default avatarAlan Coopersmith <alan.coopersmith@oracle.com>
    43532f21