Commit 69a6b863 authored by Simon Giesecke's avatar Simon Giesecke

Problem: C4267 warning test_spec_pushpull

Solution: Use unsigned char instead of size_t
parent 3cbc7cb0
...@@ -92,9 +92,9 @@ void test_pull_fair_queue_in (void *ctx) ...@@ -92,9 +92,9 @@ void test_pull_fair_queue_in (void *ctx)
rc = zmq_getsockopt (pull, ZMQ_LAST_ENDPOINT, connect_address, &len); rc = zmq_getsockopt (pull, ZMQ_LAST_ENDPOINT, connect_address, &len);
assert (rc == 0); assert (rc == 0);
const size_t services = 5; const unsigned char services = 5;
void *pushs[services]; void *pushs[services];
for (size_t peer = 0; peer < services; ++peer) { for (unsigned char peer = 0; peer < services; ++peer) {
pushs[peer] = zmq_socket (ctx, ZMQ_PUSH); pushs[peer] = zmq_socket (ctx, ZMQ_PUSH);
assert (pushs[peer]); assert (pushs[peer]);
...@@ -109,7 +109,7 @@ void test_pull_fair_queue_in (void *ctx) ...@@ -109,7 +109,7 @@ void test_pull_fair_queue_in (void *ctx)
int second_half = 0; int second_half = 0;
// Send 2N messages // Send 2N messages
for (size_t peer = 0; peer < services; ++peer) { for (unsigned char peer = 0; peer < services; ++peer) {
char *str = strdup ("A"); char *str = strdup ("A");
str[0] += peer; str[0] += peer;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment