jart / bestline

ANSI Standard X3.64 Teletypewriter Command Session Library
Other
443 stars 29 forks source link

Silence signedness related warnings #27

Closed dimkr closed 1 year ago

dimkr commented 1 year ago
bestline/bestline.c: In function ‘bestlineEditHistoryGoto’:
bestline/bestline.c:2047:11: error: comparison of unsigned expression in ‘< 0’ is always false [-Werror=type-limits]
 2047 |     if (i < 0) return;
      |           ^
bestline/bestline.c: In function ‘IsBalanced’:
bestline/bestline.c:3024:23: error: comparison of integer expressions of different signedness: ‘int’ and ‘unsigned int’ [-Werror=sign-compare]
 3024 |     for (d = i = 0; i < l->len; ++i) {
      |                       ^