1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

fix format string for size_t argument

This commit is contained in:
Steffen Vogel 2018-12-02 03:04:36 +01:00
parent 3674669424
commit dc350c83f1

View file

@ -108,7 +108,7 @@ int memory_init(int hugepages)
if (ret)
return ret;
debug(LOG_MEM | 2, "Increased ressource limit of locked memory to %d bytes", lock);
debug(LOG_MEM | 2, "Increased ressource limit of locked memory to %zd bytes", lock);
}
#endif
return 0;