fetch: Squash -Wcalloc-transposed-args (gcc-14)

This commit is contained in:
Michael Drake 2024-05-24 20:48:20 +01:00
parent a87ff23666
commit 0843a9b43d

View File

@ -726,7 +726,7 @@ fetch_multipart_data_new_kv(struct fetch_multipart_data **list,
assert(list);
newdata = calloc(sizeof(*newdata), 1);
newdata = calloc(1, sizeof(*newdata));
if (newdata == NULL) {
return NSERROR_NOMEM;