diff options
author | Marek Olšák <[email protected]> | 2017-07-06 02:23:46 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-07-10 22:44:48 +0200 |
commit | aaee0d1bbf60de17c95c0e2bc5a905753e8deef6 (patch) | |
tree | 1ffe52b24e216bdd8211bfad677804176dc5bbf4 /include/GL/internal | |
parent | 833108ac14ade91f54cc6e1e157ecc19b62da404 (diff) |
gallium: use "ull" number suffix to keep the QtCreator parser happy
It can't parse "llu".
Reviewed-by: Thomas Helland <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
Diffstat (limited to 'include/GL/internal')
-rw-r--r-- | include/GL/internal/dri_interface.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/GL/internal/dri_interface.h b/include/GL/internal/dri_interface.h index 6992da16d5f..1893d4c4a5e 100644 --- a/include/GL/internal/dri_interface.h +++ b/include/GL/internal/dri_interface.h @@ -342,7 +342,7 @@ struct __DRI2throttleExtensionRec { #define __DRI2_FENCE "DRI2_Fence" #define __DRI2_FENCE_VERSION 2 -#define __DRI2_FENCE_TIMEOUT_INFINITE 0xffffffffffffffffllu +#define __DRI2_FENCE_TIMEOUT_INFINITE 0xffffffffffffffffull #define __DRI2_FENCE_FLAG_FLUSH_COMMANDS (1 << 0) |