Skip to content

Commit cda382e

Browse files
authored
Merge pull request #127 from dveeden/fedora40
Fix building on Fedora 40 with GCC 14.2.1
2 parents 16a64d0 + d6e2bf1 commit cda382e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

DBI.xs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1106,7 +1106,7 @@ dbih_inner(pTHX_ SV *orv, const char *what)
11061106
if (!SvMAGICAL(ohv)) {
11071107
if (!what)
11081108
return NULL;
1109-
if (!hv_fetch(ohv,"_NO_DESTRUCT_WARN",17,0))
1109+
if (!hv_fetch((HV*)ohv,"_NO_DESTRUCT_WARN",17,0))
11101110
sv_dump(orv);
11111111
croak("%s handle %s is not a DBI handle (has no magic)",
11121112
what, neatsvpv(orv,0));

0 commit comments

Comments
 (0)