Skip to content
  • Alexandre Janniaux's avatar
    gui: ncurses: use size_t for index subscript · 0f47aa08
    Alexandre Janniaux authored and Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf committed
    Fix warning:
    
        ../../modules/gui/ncurses.c: In function ‘DrawStats’:
        ../../modules/gui/ncurses.c:691:23: warning: comparison of integer expressions of different signedness: ‘int’ and ‘size_t’ {aka ‘long unsigned int’} [-Wsign-compare]
          691 |     for (int i = 0; i < item->es_vec.size ; i++) {
              |                       ^
    0f47aa08