diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2021-02-13 17:21:12 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-02-13 17:21:12 +0900 |
| commit | da6c4ed169b28f9f012595b23e08c08f2f6876eb (patch) | |
| tree | 48c38138119e6d80db04c4208b68076fc97dcd5e /src/array.c | |
| parent | d04c651405189e132bd19985435d4c1c5fa1762b (diff) | |
| parent | 6204244b41e88de8dbb3ca7e7ce35006fa61b723 (diff) | |
| download | mruby-da6c4ed169b28f9f012595b23e08c08f2f6876eb.tar.gz mruby-da6c4ed169b28f9f012595b23e08c08f2f6876eb.zip | |
Merge pull request #5345 from jbampton/fix-missing-https-on-links
chore: fix missing HTTPS on links
Diffstat (limited to 'src/array.c')
| -rw-r--r-- | src/array.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/array.c b/src/array.c index a66ff8183..ab6adf52c 100644 --- a/src/array.c +++ b/src/array.c @@ -60,7 +60,7 @@ mrb_ary_new(mrb_state *mrb) * * gcc on ARM may fail optimization of memcpy * http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.faqs/ka3934.html * * gcc on MIPS also fail - * http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39755 + * https://gcc.gnu.org/bugzilla/show_bug.cgi?id=39755 * * memcpy doesn't exist on freestanding environment * * If you optimize for binary size, use memcpy instead of this at your own risk |
