diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-12 07:18:28 -0700 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-03-12 07:18:28 -0700 |
| commit | 83e70654b0d72a582ea29e84b14d09e67e015b39 (patch) | |
| tree | 8f7b7f1758e0f976cb8626540f0ece66d42c275c /include | |
| parent | d0fb6d00a2f6d0cb67f513ae8519e752f531def7 (diff) | |
| parent | e7fe4ed49914974f04ac3b409c860df7fdbd9522 (diff) | |
| download | mruby-83e70654b0d72a582ea29e84b14d09e67e015b39.tar.gz mruby-83e70654b0d72a582ea29e84b14d09e67e015b39.zip | |
Merge pull request #988 from monaka/pr-use-suitable-types-20130312
Use suitable types for variables.
Diffstat (limited to 'include')
| -rw-r--r-- | include/mruby/string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mruby/string.h b/include/mruby/string.h index 4ba4ce544..9e6de485d 100644 --- a/include/mruby/string.h +++ b/include/mruby/string.h @@ -68,7 +68,7 @@ mrb_value mrb_str_buf_append(mrb_state *mrb, mrb_value str, mrb_value str2); mrb_value mrb_str_inspect(mrb_state *mrb, mrb_value str); int mrb_str_equal(mrb_state *mrb, mrb_value str1, mrb_value str2); mrb_value mrb_str_dump(mrb_state *mrb, mrb_value str); -mrb_value mrb_str_cat(mrb_state *mrb, mrb_value str, const char *ptr, long len); +mrb_value mrb_str_cat(mrb_state *mrb, mrb_value str, const char *ptr, mrb_int len); mrb_value mrb_str_append(mrb_state *mrb, mrb_value str, mrb_value str2); int mrb_str_cmp(mrb_state *mrb, mrb_value str1, mrb_value str2); |
