diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2019-07-16 06:36:47 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2019-07-16 06:36:47 +0900 |
| commit | 8e10a026e61246401f035dec50943d16e99fb70d (patch) | |
| tree | 8b2c68435f89c9adfff55dd6665b0cc32b0ee65f /src | |
| parent | d7f9d71ea55d08bab1d1ca5a66e33f2512bbe691 (diff) | |
| parent | acad9567c16317a86d7e246d6093a43d3a58c758 (diff) | |
| download | mruby-8e10a026e61246401f035dec50943d16e99fb70d.tar.gz mruby-8e10a026e61246401f035dec50943d16e99fb70d.zip | |
Merge pull request #4580 from shuujii/unify-type-of-line-number-to-uint16_t
Unify type of line number to `uint16_t`
Diffstat (limited to 'src')
| -rw-r--r-- | src/backtrace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backtrace.c b/src/backtrace.c index e4f5a3064..991a67d00 100644 --- a/src/backtrace.c +++ b/src/backtrace.c @@ -16,7 +16,7 @@ #include <mruby/data.h> struct backtrace_location { - int lineno; + int32_t lineno; mrb_sym method_id; const char *filename; }; |
