Merge pull request #38 from grooverdan/1.0-printf-warning-size_t

%zd for size_t printf ops
This commit is contained in:
Alexey Kopytov
2016-05-16 00:57:38 +04:00

View File

@ -415,7 +415,7 @@ void * hugetlb_alloc(size_t size)
if (shmid < 0)
{
log_errno(LOG_FATAL,
"Failed to allocate %d bytes from HugeTLB memory.", size);
"Failed to allocate %zd bytes from HugeTLB memory.", size);
return NULL;
}