diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-09-01 15:00:15 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2005-09-01 15:00:15 +0000 |
commit | cc6ed77d04bf16cb06af8602b4d69f01bf68bd79 (patch) | |
tree | 26c572ce8df0d7e0f4b2fe038b3c7858b28a311b /toke.c | |
parent | 04cd59d6b048a525c3fb8126184bf470c6ae713e (diff) | |
download | perl-cc6ed77d04bf16cb06af8602b4d69f01bf68bd79.tar.gz |
Oops, fix threaded build
p4raw-id: //depot/perl@25346
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2294,7 +2294,7 @@ S_find_in_my_stash(pTHX_ const char *pkgname, I32 len) } STATIC char * -S_tokenize_use(int is_use, char *s) { +S_tokenize_use(pTHX_ int is_use, char *s) { if (PL_expect != XSTATE) yyerror(Perl_form(aTHX_ "\"%s\" not allowed in expression", is_use ? "use" : "no")); |