elftoolchain: Consistently use item count as the first argument to calloc

Reported by:	GCC 14 -Wcalloc-transposed-args
Reviewed by:	rlibby, emaste
Differential Revision:	https://reviews.freebsd.org/D46007
This commit is contained in:
John Baldwin 2024-07-19 13:02:45 -04:00
parent bf3b889a5b
commit b73445a32f

View File

@ -302,7 +302,7 @@ _dwarf_alloc(Dwarf_Debug *ret_dbg, int mode, Dwarf_Error *error)
{
Dwarf_Debug dbg;
if ((dbg = calloc(sizeof(struct _Dwarf_Debug), 1)) == NULL) {
if ((dbg = calloc(1, sizeof(struct _Dwarf_Debug))) == NULL) {
DWARF_SET_ERROR(dbg, error, DW_DLE_MEMORY);
return (DW_DLE_MEMORY);
}