* tests/futex.c (sprintrc) <RES_BUF_SIZE>: Value increased from 256 to
  4096.
---
 tests/futex.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/tests/futex.c b/tests/futex.c
index fe3741a..28d9df8 100644
--- a/tests/futex.c
+++ b/tests/futex.c
@@ -145,8 +145,7 @@ void invalid_op(int *val, int op, uint32_t argmask, ...)
 
 const char *sprintrc(long rc)
 {
-       enum { RES_BUF_SIZE = 256 };
-       static char buf[RES_BUF_SIZE];
+       static char buf[4096];
 
        if (rc == 0)
                return "0";
-- 
1.7.10.4


------------------------------------------------------------------------------
_______________________________________________
Strace-devel mailing list
Strace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/strace-devel

Reply via email to