diff options
author | Vinson Lee <[email protected]> | 2010-04-20 17:22:26 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-04-20 17:22:26 -0700 |
commit | 83353e3070003ba8ca0e681f3c21ab3e94d9c273 (patch) | |
tree | 15eee047aba6446b1d42685fb3ee3956086962a5 /src | |
parent | 32f344f4432aaa929cff7d68b9ca5947d633fe88 (diff) |
i965g: s/inttypes.h/stdint.h/
MSVC doesn't have either but Mesa has stdint.h at include/c99.
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/i965/intel_decode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/intel_decode.c b/src/gallium/drivers/i965/intel_decode.c index 3166958bad3..6c47415cac5 100644 --- a/src/gallium/drivers/i965/intel_decode.c +++ b/src/gallium/drivers/i965/intel_decode.c @@ -37,8 +37,8 @@ #include <stdio.h> #include <stdarg.h> +#include <stdint.h> #include <string.h> -#include <inttypes.h> #include "intel_decode.h" |