aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/amd/addrlib/src/core/coord.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/addrlib/src/core/coord.cpp b/src/amd/addrlib/src/core/coord.cpp
index b46149e7f83..3cf066daa94 100644
--- a/src/amd/addrlib/src/core/coord.cpp
+++ b/src/amd/addrlib/src/core/coord.cpp
@@ -83,11 +83,11 @@ BOOL_32 Coordinate::operator<(const Coordinate& b)
}
else
{
- if (dim == 's' || b.dim == 'm')
+ if (dim == DIM_S || b.dim == DIM_M)
{
ret = TRUE;
}
- else if (b.dim == 's' || dim == 'm')
+ else if (b.dim == DIM_S || dim == DIM_M)
{
ret = FALSE;
}