Fixed a compiler warning about a format specification mismatch.

git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@1460 d57e44dd-8a1f-0410-8b47-8ef2f437770f
This commit is contained in:
Bart Van Assche
2010-01-13 13:21:08 +00:00
parent b9ad2bae2b
commit dc45f111c6

View File

@@ -192,7 +192,7 @@ out:
static void *align_alloc(size_t size)
{
TRACE_MEM("Request to alloc %dKB", size / 1024);
TRACE_MEM("Request to alloc %zdKB", size / 1024);
return memalign(PAGE_SIZE, size);
}