summaryrefslogtreecommitdiff
path: root/src/unwinder/amd64
diff options
context:
space:
mode:
Diffstat (limited to 'src/unwinder/amd64')
-rw-r--r--src/unwinder/amd64/unwinder_amd64.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/unwinder/amd64/unwinder_amd64.cpp b/src/unwinder/amd64/unwinder_amd64.cpp
index 65da7862a5..8d989d4095 100644
--- a/src/unwinder/amd64/unwinder_amd64.cpp
+++ b/src/unwinder/amd64/unwinder_amd64.cpp
@@ -134,7 +134,7 @@ public:
UCHAR operator[](int index)
{
int realIndex = m_offset + index;
- UNWINDER_ASSERT(realIndex < sizeof(m_buffer));
+ UNWINDER_ASSERT(realIndex < (int)sizeof(m_buffer));
return m_buffer[realIndex];
}
};