diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2006-04-30 12:32:09 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2006-04-30 12:32:09 +0000 |
commit | b9ea4ed635ce80660161459fbde22a8c65d414db (patch) | |
tree | 9650ada0f633c399e7654debfcab3af5d8af0143 /regexec.c | |
parent | 73ee8be2712c500c98e5976864ba96726bf311e2 (diff) | |
download | perl-b9ea4ed635ce80660161459fbde22a8c65d414db.tar.gz |
remove a compiler warning by making HOPBACKc only hop *back*
p4raw-id: //depot/perl@28023
Diffstat (limited to 'regexec.c')
-rw-r--r-- | regexec.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -104,7 +104,7 @@ : (U8*)(pos + off))) #define HOPBACKc(pos, off) ((char*) \ ((PL_reg_match_utf8) \ - ? reghopmaybe3((U8*)pos, -off, ((U8*)(off < 0 ? PL_regeol : PL_bostr))) \ + ? reghopmaybe3((U8*)pos, -off, (U8*)PL_bostr) \ : (pos - off >= PL_bostr) \ ? (U8*)(pos - off) \ : (U8*)NULL) \ |