summaryrefslogtreecommitdiff
path: root/src/intel/tools/aub_mem.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/intel/tools/aub_mem.c')
-rw-r--r--src/intel/tools/aub_mem.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/tools/aub_mem.c b/src/intel/tools/aub_mem.c
index f436627d19d..2f70afc8b76 100644
--- a/src/intel/tools/aub_mem.c
+++ b/src/intel/tools/aub_mem.c
@@ -87,9 +87,9 @@ static inline int
cmp_uint64(uint64_t a, uint64_t b)
{
if (a < b)
- return -1;
- if (a > b)
return 1;
+ if (a > b)
+ return -1;
return 0;
}