Module: Mesa Branch: master Commit: 30ebc8650caa8f67deebaae397a04dfdfc50d1df URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=30ebc8650caa8f67deebaae397a04dfdfc50d1df
Author: Marek Olšák <mar...@gmail.com> Date: Tue Oct 9 14:38:43 2012 +0200 nv50: fix printf warning --- src/gallium/drivers/nv50/codegen/nv50_ir_print.cpp | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/gallium/drivers/nv50/codegen/nv50_ir_print.cpp b/src/gallium/drivers/nv50/codegen/nv50_ir_print.cpp index daa0ec6..4c522ee 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 <inttypes.h> 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; _______________________________________________ mesa-commit mailing list mesa-commit@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-commit