From 7a2391b1201c8ff9c8d9623e6f6f675573edc600 Mon Sep 17 00:00:00 2001 From: Tomasz Dąbrowski Date: Mon, 25 Sep 2017 16:12:21 +0200 Subject: fix: src\error.c(76): warning C4244: '=': conversion from 'mrb_int' to 'int', possible loss of data --- src/error.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/error.c b/src/error.c index 2c4fd1a40..8e679cbb1 100644 --- a/src/error.c +++ b/src/error.c @@ -71,7 +71,7 @@ exc_exception(mrb_state *mrb, mrb_value self) { mrb_value exc; mrb_value a; - int argc; + mrb_int argc; argc = mrb_get_args(mrb, "|o", &a); if (argc == 0) return self; -- cgit v1.2.3