summaryrefslogtreecommitdiffstats
path: root/src/mesa
diff options
context:
space:
mode:
authorRoland Scheidegger <[email protected]>2017-02-08 21:56:16 +0100
committerRoland Scheidegger <[email protected]>2017-02-08 21:56:16 +0100
commitf64d74aa198a993f5907a1bad5130e3056c1b84f (patch)
tree579691e88f2592c756b4c8c8f6c826180523b3f3 /src/mesa
parentc1aa444a3edb4347fb475b1ee4e2dccdb99272fe (diff)
mesa: (trivial) include <inttypes.h> for PRIx64 macros
Fixes a compile error with mingw.
Diffstat (limited to 'src/mesa')
-rw-r--r--src/mesa/main/uniform_query.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/uniform_query.cpp b/src/mesa/main/uniform_query.cpp
index 3f7f705c598..cb1c51fae30 100644
--- a/src/mesa/main/uniform_query.cpp
+++ b/src/mesa/main/uniform_query.cpp
@@ -25,6 +25,7 @@
*/
#include <stdlib.h>
+#include <inttypes.h> /* for PRIx64 macro */
#include "main/core.h"
#include "main/context.h"