summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/nouveau/nouveau_mm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/drivers/nouveau/nouveau_mm.c')
-rw-r--r--src/gallium/drivers/nouveau/nouveau_mm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/gallium/drivers/nouveau/nouveau_mm.c b/src/gallium/drivers/nouveau/nouveau_mm.c
index 91532d7ec72..2a4e322e8eb 100644
--- a/src/gallium/drivers/nouveau/nouveau_mm.c
+++ b/src/gallium/drivers/nouveau/nouveau_mm.c
@@ -1,4 +1,6 @@
+#include <inttypes.h>
+
#include "util/u_inlines.h"
#include "util/u_memory.h"
#include "util/u_double_list.h"
@@ -143,7 +145,7 @@ mm_slab_new(struct nouveau_mman *cache, int chunk_order)
cache->allocated += size;
- debug_printf("MM: new slab, total memory = %llu KiB\n",
+ debug_printf("MM: new slab, total memory = %"PRIu64" KiB\n",
cache->allocated / 1024);
return PIPE_OK;