Skip to content

Commit d6e2bf1

Browse files
committedAug 26, 2024·
Fix building on Fedora 40 with GCC 14.2.1
1 parent 16a64d0 commit d6e2bf1

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)
Please sign in to comment.