Skip to content

Commit

Permalink
errno.c: resolve signedness warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
matz committed Apr 2, 2022
1 parent b99c389 commit 3dabd18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mrbgems/mruby-errno/src/errno.c
Expand Up @@ -45,7 +45,7 @@ mrb_sce_init(mrb_state *mrb, mrb_value self, mrb_value m, mrb_int n)

m_errno = mrb_module_get_id(mrb, MRB_SYM(Errno));
if (!no_errno) {
int i;
size_t i;

for (i=0; i < E2C_LEN; i++) {
if (e2c[i].eno == n) {
Expand Down

0 comments on commit 3dabd18

Please sign in to comment.