From 30ebc8650caa8f67deebaae397a04dfdfc50d1df Mon Sep 17 00:00:00 2001 From: =?utf8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Tue, 9 Oct 2012 14:38:43 +0200 Subject: [PATCH] nv50: fix printf warning --- src/gallium/drivers/nv50/codegen/nv50_ir_print.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/nv50/codegen/nv50_ir_print.cpp b/src/gallium/drivers/nv50/codegen/nv50_ir_print.cpp index daa0ec697fb..4c522ee479b 100644 --- a/src/gallium/drivers/nv50/codegen/nv50_ir_print.cpp +++ b/src/gallium/drivers/nv50/codegen/nv50_ir_print.cpp @@ -22,6 +22,7 @@ #include "nv50_ir.h" #include "nv50_ir_target.h" +#include namespace nv50_ir { @@ -391,7 +392,7 @@ int ImmediateValue::print(char *buf, size_t size, DataType ty) const case TYPE_U64: case TYPE_S64: default: - PRINT("0x%016lx", reg.data.u64); + PRINT("0x%016"PRIx64, reg.data.u64); break; } return pos; -- 2.30.2