Fix off-by-one error with binderThroughputTest -s

The -s option to binderThroughputTest allows the user
to set the size of the payload being sent during the
test. Due to an off-by-one error, the size was actually
4 bytes less than specified. Fixed.

Test: verified correct size
Bug: 65052700
Change-Id: I884fe08c113c2ca63a6f328741fb0914799e9eb7
Signed-off-by: Todd Kjos <tkjos@google.com>
diff --git a/libs/binder/tests/binderThroughputTest.cpp b/libs/binder/tests/binderThroughputTest.cpp
index e35f491..bf41e0b 100644
--- a/libs/binder/tests/binderThroughputTest.cpp
+++ b/libs/binder/tests/binderThroughputTest.cpp
@@ -215,7 +215,7 @@
         int target = cs_pair ? num % server_count : rand() % workers.size();
         int sz = payload_size;
 
-        while (sz > sizeof(uint32_t)) {
+        while (sz >= sizeof(uint32_t)) {
             data.writeInt32(0);
             sz -= sizeof(uint32_t);
         }