diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-05-09 16:53:28 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-06-11 09:40:02 +0200 |
commit | cffe132d3937f3dc01397f5375d368ad39d53ab7 (patch) | |
tree | 91a9c930bb9f5e8f96125265c021f70b645cc99d /util.c | |
parent | 6976cee33e524456a81f646a3fa65f279c6c190d (diff) | |
download | perl-cffe132d3937f3dc01397f5375d368ad39d53ab7.tar.gz |
Use SvTAIL() instead of BmFLAGS(). The core no longer uses BmFLAGS().
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -804,7 +804,7 @@ Perl_fbm_instr(pTHX_ unsigned char *big, register unsigned char *bigend, SV *lit } check_end: if ( s == bigend - && (BmFLAGS(littlestr) & FBMcf_TAIL) + && SvTAIL(littlestr) && memEQ((char *)(bigend - littlelen), (char *)(oldlittle - littlelen), littlelen) ) return (char*)bigend - littlelen; |