diff options
author | Steve Hay <SteveHay@planit.com> | 2006-08-01 16:17:47 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2006-08-01 16:17:47 +0000 |
commit | b69b0499811c52eed331c158803ef26f768e2668 (patch) | |
tree | 55f82297022f18e072cdf2fbd5070bf76abb40a5 /cop.h | |
parent | d4315dd6a064c0701c6a2be9857472687268433f (diff) | |
download | perl-b69b0499811c52eed331c158803ef26f768e2668.tar.gz |
Silence a couple of Borland compiler warnings
p4raw-id: //depot/perl@28643
Diffstat (limited to 'cop.h')
-rw-r--r-- | cop.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -576,7 +576,7 @@ struct subst { cx->sb_rx = rx, \ cx->cx_type = CXt_SUBST; \ rxres_save(&cx->sb_rxres, rx); \ - ReREFCNT_inc(rx) + (void)ReREFCNT_inc(rx) #define POPSUBST(cx) cx = &cxstack[cxstack_ix--]; \ rxres_free(&cx->sb_rxres); \ |