From 2259428871a6fb8a1e940f479ee57f0f1bb507d1 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sat, 19 Feb 2011 12:13:09 -0700 Subject: [PATCH] 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. --- toke.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toke.c b/toke.c index 9e863df..a4a279f 100644 --- a/toke.c +++ b/toke.c @@ -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; -- 2.7.4