fixed parsing of r_info field
diff --git a/scripts/readelf.py b/scripts/readelf.py
index 46caa11..264f25c 100755
--- a/scripts/readelf.py
+++ b/scripts/readelf.py
@@ -282,7 +282,7 @@
             for rel in section.iter_relocations():
                 self._emitline('%s %s' % (
                     self._format_hex(rel['r_offset'], fullhex=True, lead0x=False),
-                    self._format_hex(rel['r_info_raw'], fullhex=True, lead0x=False)))
+                    self._format_hex(rel['r_info'], fullhex=True, lead0x=False)))
                 #print rel, rel.entry
 
         if not has_relocation_sections: