diff options
author | Nicholas Clark <nick@ccl4.org> | 2007-01-11 13:23:40 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2007-01-11 13:23:40 +0000 |
commit | b4390064818aaae08b8f53f740ea62f7dd8517a1 (patch) | |
tree | d75b7e2e0b3f894061b497a4680a5115a5b20704 /proto.h | |
parent | 8b8eea963147e9111f99b4c1bf3eb8b60fe51935 (diff) | |
download | perl-b4390064818aaae08b8f53f740ea62f7dd8517a1.tar.gz |
do_gv_dump, do_gvgv_dump and do_hv_dump call all actually take a NULL
parameter. Patch for do_hv_dump supplied by Brandon L Black, other
two added after code inspection.
p4raw-id: //depot/perl@29753
Diffstat (limited to 'proto.h')
-rw-r--r-- | proto.h | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -2720,17 +2720,14 @@ PERL_CALLCONV void Perl_dump_vindent(pTHX_ I32 level, PerlIO *file, const char* PERL_CALLCONV void Perl_do_gv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv) __attribute__nonnull__(pTHX_2) - __attribute__nonnull__(pTHX_3) - __attribute__nonnull__(pTHX_4); + __attribute__nonnull__(pTHX_3); PERL_CALLCONV void Perl_do_gvgv_dump(pTHX_ I32 level, PerlIO *file, const char *name, GV *sv) __attribute__nonnull__(pTHX_2) - __attribute__nonnull__(pTHX_3) - __attribute__nonnull__(pTHX_4); + __attribute__nonnull__(pTHX_3); PERL_CALLCONV void Perl_do_hv_dump(pTHX_ I32 level, PerlIO *file, const char *name, HV *sv) __attribute__nonnull__(pTHX_2) - __attribute__nonnull__(pTHX_3) __attribute__nonnull__(pTHX_4); PERL_CALLCONV void Perl_do_magic_dump(pTHX_ I32 level, PerlIO *file, const MAGIC *mg, I32 nest, I32 maxnest, bool dumpops, STRLEN pvlim) |