Fix typo.

I cannot find anything related to other issues described in the original issue. Version 7.x was fixed earlier.
Fixes #559
This commit is contained in:
Andrii Kurdiumov 2019-10-11 22:06:39 +03:00
parent 04f7366a62
commit 5afdec1883

View File

@ -1520,7 +1520,7 @@ class XmlImporter:
if self.has_attribute(structure, NAMESPACE) == False:
return
namespace = self.get_attribute(structure, NAMESPACE)
name = namspace + '__' + name
name = namespace + '__' + name
name.replace('/','_')
name.replace('.','_')
dtyp = idaapi.get_struc_id(name)
@ -1590,7 +1590,7 @@ class XmlImporter:
if self.has_attribute(union, NAMESPACE) == False:
return
namespace = self.get_attribute(union, NAMESPACE)
name = namspace + '__' + name
name = namespace + '__' + name
name.replace('/','_')
name.replace('.','_')
dtyp = idaapi.get_struc_id(name)