Index: source/Core/DataExtractor.cpp
===================================================================
--- source/Core/DataExtractor.cpp	(revision 107688)
+++ source/Core/DataExtractor.cpp	(working copy)
@@ -1279,17 +1279,17 @@
             break;
 
         case eFormatDecimal:
-            if (item_byte_size <= 8);
+            if (item_byte_size <= 8)
                 s->Printf ("%lld", GetMaxS64Bitfield(&offset, item_byte_size, item_bit_size, item_bit_offset));
             break;
 
         case eFormatUnsigned:
-            if (item_byte_size <= 8);
+            if (item_byte_size <= 8)
                 s->Printf ("%llu", GetMaxU64Bitfield(&offset, item_byte_size, item_bit_size, item_bit_offset));
             break;
 
         case eFormatOctal:
-            if (item_byte_size <= 8);
+            if (item_byte_size <= 8)
                 s->Printf ("0%llo", GetMaxS64Bitfield(&offset, item_byte_size, item_bit_size, item_bit_offset));
             break;
 
Index: source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp
===================================================================
--- source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp	(revision 107688)
+++ source/Plugins/SymbolFile/DWARF/DWARFDebugAbbrev.cpp	(working copy)
@@ -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;
 }
