Skip to content

Commit

Permalink
format specifier fix: minor fix, changing format specifier
Browse files Browse the repository at this point in the history
Signed-off-by: dkgupta <[email protected]>
  • Loading branch information
dkgupta-amzn authored and wipawel committed Jan 11, 2022
1 parent 1638f4f commit 363d521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mm/slab.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ static void *ktf_alloc(size_t size) {
*/
order_index -= 4;

dprintk("Alloc size %u, powerof 2 size %u, order %u\n", size, size_power2,
dprintk("Alloc size %zu, powerof 2 size %zu, order %zu\n", size, size_power2,
order_index);
spin_lock(&slab_mm_lock);
/* Go through list of meta_slab_t and try to allocate a free slab */
Expand Down

0 comments on commit 363d521

Please sign in to comment.