diff options
author | Karl Williamson <public@khwilliamson.com> | 2011-02-19 12:13:09 -0700 |
---|---|---|
committer | Karl Williamson <public@khwilliamson.com> | 2011-02-19 21:28:48 -0700 |
commit | 2259428871a6fb8a1e940f479ee57f0f1bb507d1 (patch) | |
tree | 644e532969640741058fcfe6489450405f38327d /toke.c | |
parent | 4fb67938d761c2c60668d0aa0ff50b0f31fe2b26 (diff) | |
download | perl-2259428871a6fb8a1e940f479ee57f0f1bb507d1.tar.gz |
toke.c: Don't take the address of a register
I discovered after I pushed 858a358bdd94da8251cdb2210d9bec7c1bbe7464
that I had forgotten to 'git add' changes before committing.
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8857,7 +8857,7 @@ STATIC char * S_scan_subst(pTHX_ char *start) { dVAR; - register char *s; + char *s; register PMOP *pm; I32 first_start; I32 es = 0; |