Remove extraneous semicolon after if condition (from Jean-Daniel Dupas).



git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@107694 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp b/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
index af6fc8e..c51a2dd 100644
--- a/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
+++ b/source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
@@ -196,7 +196,7 @@
         m_prev_abbr_offset_pos = pos;
     }
 
-    if (pos != m_abbrevCollMap.end());
+    if (pos != m_abbrevCollMap.end())
         return &(pos->second);
     return NULL;
 }