diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-01-21 13:36:08 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-01-21 17:09:11 +0000 |
commit | cbfd0a879b2bf2ade4a309e6d56c08ba19f320e1 (patch) | |
tree | 7771d5ecf7d2b77cf43976ba2a814084ccbca4f5 /ext/DynaLoader | |
parent | 6673a63c63e2a65dbfcc835d6499cc97c449c67b (diff) | |
download | perl-cbfd0a879b2bf2ade4a309e6d56c08ba19f320e1.tar.gz |
Update the documentation of get_av() to note that it calls Perl_gv_fetchpv(),
and hence the 'create' argument is actually 'flags'. Fix code and documentation
that used TRUE or FALSE to use 0 or GV_ADD.
Diffstat (limited to 'ext/DynaLoader')
-rw-r--r-- | ext/DynaLoader/dlutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/DynaLoader/dlutils.c b/ext/DynaLoader/dlutils.c index e9dd34a6c9..3eb1f3dc33 100644 --- a/ext/DynaLoader/dlutils.c +++ b/ext/DynaLoader/dlutils.c @@ -69,7 +69,7 @@ dl_unload_all_files(pTHX_ void *unused) SV *dl_libref; if ((sub = get_cv("DynaLoader::dl_unload_file", FALSE)) != NULL) { - dl_librefs = get_av("DynaLoader::dl_librefs", FALSE); + dl_librefs = get_av("DynaLoader::dl_librefs", 0); while ((dl_libref = av_pop(dl_librefs)) != &PL_sv_undef) { dSP; ENTER; |