From 4fa38c7a03df4064f9c4fff75f9d5a93f0049ae5 Mon Sep 17 00:00:00 2001 From: Christophe Riccio Date: Sat, 21 Jun 2014 16:29:06 +0200 Subject: [PATCH] Fixed warning --- test/core/core_func_matrix.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/core/core_func_matrix.cpp b/test/core/core_func_matrix.cpp index a905417f1..5c95672cb 100644 --- a/test/core/core_func_matrix.cpp +++ b/test/core/core_func_matrix.cpp @@ -228,7 +228,7 @@ int test_inverse_perf(std::size_t Instance, char const * Message) //glm::uint Ulp = 0; //Ulp = glm::max(glm::float_distance(*Dst, *Src), Ulp); - printf("inverse<%s>(%f): %d\n", Message, Diff, EndTime - StartTime); + printf("inverse<%s>(%f): %lu\n", Message, Diff, EndTime - StartTime); return 0; }