summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/device/resource_allocator_v4.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/resource_allocator_v4.c b/src/device/resource_allocator_v4.c
index 6e4aa5ee7d..511c4505db 100644
--- a/src/device/resource_allocator_v4.c
+++ b/src/device/resource_allocator_v4.c
@@ -222,7 +222,7 @@ static unsigned char get_alignment_by_resource_type(const struct resource *res)
else if (res->flags & IORESOURCE_IO)
return 0; /* No special alignment required --> log2(1) */
- die("Unexpected resource type: flags(%d)!\n", res->flags);
+ die("Unexpected resource type: flags(%lu)!\n", res->flags);
}
/*