mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-21 05:05:48 +00:00
Fix syntax error from termux
This commit is contained in:
parent
6cbae900c5
commit
a86ae89f1d
@ -430,7 +430,7 @@ int linux_reg_read (RDebug *dbg, int type, ut8 *buf, int size) {
|
||||
if (ret1 != 0) return false;
|
||||
if (sizeof(fpregs) < size) size = sizeof(fpregs);
|
||||
memcpy (buf, &fpregs, size);
|
||||
return sizeof(fpregs)
|
||||
return sizeof(fpregs);
|
||||
#endif // !__ANDROID__
|
||||
#elif __i386__
|
||||
#if !__ANDROID__
|
||||
|
Loading…
x
Reference in New Issue
Block a user