mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-14 02:51:12 +00:00
Fix warns in smd bin plug
This commit is contained in:
parent
115c0bd40d
commit
36d7e5a412
@ -241,7 +241,9 @@ static RList* symbols(RBinFile *arch) {
|
||||
}
|
||||
if (name && vtable[i]) {
|
||||
ut32 addr = 0;
|
||||
r_mem_copyendian (&addr, &vtable[i], sizeof (addr), 0);
|
||||
r_mem_copyendian ((ut8*)&addr,
|
||||
(const ut8*)&vtable[i],
|
||||
sizeof (addr), 0);
|
||||
addsym (ret, name, addr);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user