diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-12 06:14:54 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-07-12 06:14:54 +0000 |
commit | 0b94c7bb9a33fcbef93724c1b5f96b2616e1e13f (patch) | |
tree | 901ffa00fdc4c95e2baac003390948d6f4ff8bdb /op.c | |
parent | a88c3d7c5dc6133bb2dd9b0b213b17f73bdf982c (diff) | |
download | perl-0b94c7bb9a33fcbef93724c1b5f96b2616e1e13f.tar.gz |
fixups for sundry warnings about function pointers
p4raw-id: //depot/perl@3669
Diffstat (limited to 'op.c')
-rw-r--r-- | op.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -677,7 +677,7 @@ Perl_op_free(pTHX_ OP *o) #endif /* USE_THREADS */ default: if (!(o->op_flags & OPf_REF) - || (PL_check[o->op_type] != FUNC_NAME_TO_PTR(Perl_ck_ftst))) + || (PL_check[o->op_type] != MEMBER_TO_FPTR(Perl_ck_ftst))) break; /* FALL THROUGH */ case OP_GVSV: |