projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
fa2bf5b
)
avoid warning on type-mismatch
Gurusamy Sarathy [Wed, 1 Mar 2000 01:38:25 +0000 (
01:38
+0000)]
p4raw-id: //depot/perl@5383
ext/DynaLoader/dlutils.c
patch
|
blob
|
blame
|
history
diff --git
a/ext/DynaLoader/dlutils.c
b/ext/DynaLoader/dlutils.c
index
fc4cd75
..
9423085
100644
(file)
--- a/
ext/DynaLoader/dlutils.c
+++ b/
ext/DynaLoader/dlutils.c
@@
-45,7
+45,7
@@
dl_unload_all_files(pTHXo_ void *unused)
PUSHMARK(SP);
XPUSHs(sv_2mortal(dl_libref));
PUTBACK;
- call_sv(sub, G_DISCARD);
+ call_sv((SV*)sub, G_DISCARD);
FREETMPS;
LEAVE;
}