projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
8de1277
)
Signedness nit.
Jarkko Hietaniemi [Wed, 14 Nov 2001 21:53:22 +0000 (21:53 +0000)]
p4raw-id: //depot/perl@13005
regexec.c
patch
|
blob
|
blame
|
history
diff --git
a/regexec.c
b/regexec.c
index
4904e57
..
8c3ff2e
100644
(file)
--- a/
regexec.c
+++ b/
regexec.c
@@
-3331,7
+3331,7
@@
S_regmatch(pTHX_ regnode *prog)
c1 = c2 = -1000;
goto assume_ok_easy;
}
- s = PL_bostr + ln;
+ s = (U8*)PL_bostr + ln;
}
else { s = (U8*)STRING(text_node); }