diff options
author | Steve Hay <SteveHay@planit.com> | 2005-06-22 12:31:59 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-06-22 12:31:59 +0000 |
commit | 1c127fab650cf6427045f36d9e941565f5163fda (patch) | |
tree | e8fd09c938fbca566ab78c94e9d4bbd714035625 /pp.c | |
parent | 804599610624faf0c46c8ed90e2d6d4956f5b897 (diff) | |
download | perl-1c127fab650cf6427045f36d9e941565f5163fda.tar.gz |
Silence some bcc32 compiler warnings
("Superfluous & with function")
p4raw-id: //depot/perl@24937
Diffstat (limited to 'pp.c')
-rw-r--r-- | pp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2562,7 +2562,7 @@ PP(pp_i_modulo) /* The assumption is to use hereafter the old vanilla version... */ PL_op->op_ppaddr = PL_ppaddr[OP_I_MODULO] = - &Perl_pp_i_modulo_0; + Perl_pp_i_modulo_0; /* .. but if we have glibc, we might have a buggy _moddi3 * (at least glicb 2.2.5 is known to have this bug), in other * words our integer modulus with negative quad as the second |