mirror of
https://codeberg.org/scip/pcp.git
synced 2025-12-18 20:30:58 +01:00
fixed format warn
This commit is contained in:
@@ -83,7 +83,7 @@ void *ucrealloc(void *d, size_t oldlen, size_t newlen) {
|
|||||||
byte *value = realloc (d, newlen);
|
byte *value = realloc (d, newlen);
|
||||||
|
|
||||||
if (value == NULL) {
|
if (value == NULL) {
|
||||||
err(errno, "Cannot reallocate %ld bytes of memory", newlen);
|
err(errno, "Cannot reallocate %"FMT_SIZE_T" bytes of memory", (SIZE_T_CAST)newlen);
|
||||||
exit(-1);
|
exit(-1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user