mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-17 18:51:27 +00:00
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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user