summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJohn Bampton <[email protected]>2021-02-13 18:17:47 +1000
committerJohn Bampton <[email protected]>2021-02-13 18:17:47 +1000
commit6204244b41e88de8dbb3ca7e7ce35006fa61b723 (patch)
tree48c38138119e6d80db04c4208b68076fc97dcd5e
parentd04c651405189e132bd19985435d4c1c5fa1762b (diff)
downloadmruby-6204244b41e88de8dbb3ca7e7ce35006fa61b723.tar.gz
mruby-6204244b41e88de8dbb3ca7e7ce35006fa61b723.zip
chore: fix missing HTTPS on links
-rw-r--r--mrbgems/mruby-compiler/core/y.tab.c2
-rw-r--r--src/array.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/mrbgems/mruby-compiler/core/y.tab.c b/mrbgems/mruby-compiler/core/y.tab.c
index c6b56d60d..3e5c6e116 100644
--- a/mrbgems/mruby-compiler/core/y.tab.c
+++ b/mrbgems/mruby-compiler/core/y.tab.c
@@ -16,7 +16,7 @@
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
+ along with this program. If not, see <https://www.gnu.org/licenses/>. */
/* As a special exception, you may create a larger work that contains
part or all of the Bison parser skeleton and distribute that work
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