summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Source/cmELF.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmELF.cxx b/Source/cmELF.cxx
index 5abc62a..2cf6b96 100644
--- a/Source/cmELF.cxx
+++ b/Source/cmELF.cxx
@@ -589,7 +589,7 @@ unsigned long cmELFInternalImpl<Types>::GetDynamicEntryPosition(int j)
{
return 0;
}
- if(j < 0 || j >= this->DynamicSectionEntries.size())
+ if(j < 0 || j >= static_cast<int>(this->DynamicSectionEntries.size()))
{
return 0;
}