diff options
author | Grazvydas Ignotas <notasas@gmail.com> | 2016-12-10 21:10:46 +0200 |
---|---|---|
committer | Eduardo Lima Mitev <elima@igalia.com> | 2016-12-11 20:04:15 +0100 |
commit | b58d1eecc6516749c160942855a9d6b558f1e947 (patch) | |
tree | b1022e74e36c9f3dfeacad5000dc89759027dbeb /src | |
parent | 3a1b15c3921d25ea2e6e81f500c3f45c84b95817 (diff) |
intel/aubinator: fix 32bit shift overflow warning
Doesn't look like this can work on 32bit, just rids of annoying
warning.
Signed-off-by: Grazvydas Ignotas <notasas@gmail.com>
Reviewed-by: Eduardo Lima Mitev <elima@igalia.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/intel/tools/aubinator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/tools/aubinator.c b/src/intel/tools/aubinator.c index 5e3a6843c8..e2bec8f949 100644 --- a/src/intel/tools/aubinator.c +++ b/src/intel/tools/aubinator.c @@ -1297,7 +1297,7 @@ int main(int argc, char *argv[]) file = aub_file_open(input_file); /* mmap a terabyte for our gtt space. */ - gtt_size = 1ul << 40; + gtt_size = 1ull << 40; gtt = mmap(NULL, gtt_size, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_NORESERVE, -1, 0); if (gtt == MAP_FAILED) { |