From a86ae89f1d01868661fc633a9ed4187946219618 Mon Sep 17 00:00:00 2001 From: pancake Date: Mon, 19 Sep 2016 12:39:00 +0200 Subject: [PATCH] Fix syntax error from termux --- libr/debug/p/native/linux/linux_debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libr/debug/p/native/linux/linux_debug.c b/libr/debug/p/native/linux/linux_debug.c index 74b5b1d543..ae18fb980a 100644 --- a/libr/debug/p/native/linux/linux_debug.c +++ b/libr/debug/p/native/linux/linux_debug.c @@ -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__