Fix syntax error from termux

This commit is contained in:
pancake 2016-09-19 12:39:00 +02:00
parent 6cbae900c5
commit a86ae89f1d

View File

@ -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__