summaryrefslogtreecommitdiff
path: root/intrpvar.h
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2022-09-01 13:39:54 +0200
committerYves Orton <demerphq@gmail.com>2022-09-07 09:02:11 +0200
commitbf1e8ebed0962ba06b49af19728839af435e9332 (patch)
treef00321ef4ca057cbfaaceb37ac9f46137a5badfd /intrpvar.h
parenteb3f818ed5dedfdab1506339af7964a40106110c (diff)
downloadperl-bf1e8ebed0962ba06b49af19728839af435e9332.tar.gz
intrpvar.h - change "char * *" into "char **"
Uniformity in such things is good.
Diffstat (limited to 'intrpvar.h')
-rw-r--r--intrpvar.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h
index 5cec9ff15f..85fa739c53 100644
--- a/intrpvar.h
+++ b/intrpvar.h
@@ -950,7 +950,7 @@ PERLVAR(I, Xpv, XPV *) /* (unused) held temporary value */
/* name of the scopes we've ENTERed. Only used with -DDEBUGGING, but needs to be
present always, as -DDEBUGGING must be binary compatible with non. */
-PERLVARI(I, scopestack_name, const char * *, NULL)
+PERLVARI(I, scopestack_name, const char **, NULL)
PERLVAR(I, debug_pad, struct perl_debug_pad) /* always needed because of the re extension */