summaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:54 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 23:52:58 +0900
commitc37a71d4eaf3f87c9f0756e07ba50e793a7788cb (patch)
tree5e2afa4f21d61ee572c2e4952d5757ed9a8dc38b /src/modules
parent9cf581443e326038a0556b89bda656bf1c8dcce9 (diff)
downloadkvirc-c37a71d4eaf3f87c9f0756e07ba50e793a7788cb.tar.gz
kvirc-c37a71d4eaf3f87c9f0756e07ba50e793a7788cb.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit a3a62f5b63dd4d8a1f06ede0daeac790ad475b2b)
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/perlcore/ppport.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/perlcore/ppport.h b/src/modules/perlcore/ppport.h
index 2a802132..611ecf12 100644
--- a/src/modules/perlcore/ppport.h
+++ b/src/modules/perlcore/ppport.h
@@ -525,7 +525,7 @@ SV *sv;
((SvFLAGS(sv) & (SVf_POK|SVf_UTF8)) == (SVf_POK) \
? ((lp = SvCUR(sv)), SvPVX(sv)) : my_sv_2pvbyte(aTHX_ sv, &lp))
static char *
- my_sv_2pvbyte(pTHX_ register SV *sv, STRLEN *lp)
+ my_sv_2pvbyte(pTHX_ SV *sv, STRLEN *lp)
{
sv_utf8_downgrade(sv,0);
return SvPV(sv,*lp);