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 /intrpvar.h | |
parent | a88c3d7c5dc6133bb2dd9b0b213b17f73bdf982c (diff) | |
download | perl-0b94c7bb9a33fcbef93724c1b5f96b2616e1e13f.tar.gz |
fixups for sundry warnings about function pointers
p4raw-id: //depot/perl@3669
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/intrpvar.h b/intrpvar.h index 0b9dfa62d2..65ab5c64fc 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -226,7 +226,7 @@ PERLVAR(Ihe_root, HE *) /* free he list--shared by interpreters */ PERLVAR(Inice_chunk, char *) /* a nice chunk of memory to reuse */ PERLVAR(Inice_chunk_size, U32) /* how nice the chunk of memory is */ -PERLVARI(Irunops, runops_proc_t, FUNC_NAME_TO_PTR(RUNOPS_DEFAULT)) +PERLVARI(Irunops, runops_proc_t, MEMBER_TO_FPTR(RUNOPS_DEFAULT)) PERLVARA(Itokenbuf,256, char) |