mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Silence GCC warning in time.c on Travis CI
Silence the following warnings:
```
/mruby/mrbgems/mruby-time/src/time.c:260:55: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if ((MRB_INT_MAX > MRB_TIME_MAX && i > 0 && i > MRB_TIME_MAX) ||
^
```
This commit is contained in:
@@ -257,7 +257,7 @@ mrb_to_time_t(mrb_state *mrb, mrb_value obj, time_t *usec)
|
||||
{
|
||||
mrb_int i = mrb_int(mrb, obj);
|
||||
|
||||
if ((MRB_INT_MAX > MRB_TIME_MAX && i > 0 && i > MRB_TIME_MAX) ||
|
||||
if ((MRB_INT_MAX > MRB_TIME_MAX && i > 0 && i > (mrb_int)MRB_TIME_MAX) ||
|
||||
(MRB_TIME_MIN > MRB_INT_MIN && MRB_TIME_MIN > i)) {
|
||||
goto out_of_range;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user