Skip to content
This repository has been archived by the owner on Mar 16, 2022. It is now read-only.

too many arguments for format string #640

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/c/DW_banded.c
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ void* my_calloc(int nitems, size_t size, char const* msg, int lineno) {
}
void* result = calloc((size_t)nitems, size);
if (NULL == result) {
fprintf(stderr, "CRITICAL ERROR: %s=calloc(%d, %zu) returned 0.\n",
fprintf(stderr, "CRITICAL ERROR: %s=calloc(%d, %zu, ..., %d) returned 0.\n",
msg, nitems, size, lineno);
abort();
}
Expand Down