mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-29 20:59:47 +01:00
Problem: identifiers not conformant with naming convention
Solution: fix identifier names
This commit is contained in:
committed by
Simon Giesecke
parent
18edd28955
commit
a83c57d0bb
@@ -36,7 +36,7 @@ SETUP_TEARDOWN_TESTCONTEXT
|
||||
|
||||
char connect_address[MAX_SOCKET_STRING];
|
||||
|
||||
void test_fair_queue_in (const char *bind_address)
|
||||
void test_fair_queue_in (const char *bind_address_)
|
||||
{
|
||||
void *rep = test_context_socket (ZMQ_REP);
|
||||
|
||||
@@ -44,7 +44,7 @@ void test_fair_queue_in (const char *bind_address)
|
||||
TEST_ASSERT_SUCCESS_ERRNO (
|
||||
zmq_setsockopt (rep, ZMQ_RCVTIMEO, &timeout, sizeof (int)));
|
||||
|
||||
TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (rep, bind_address));
|
||||
TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (rep, bind_address_));
|
||||
size_t len = MAX_SOCKET_STRING;
|
||||
TEST_ASSERT_SUCCESS_ERRNO (
|
||||
zmq_getsockopt (rep, ZMQ_LAST_ENDPOINT, connect_address, &len));
|
||||
@@ -98,11 +98,11 @@ void test_fair_queue_in (const char *bind_address)
|
||||
test_context_socket_close_zero_linger (reqs[peer]);
|
||||
}
|
||||
|
||||
void test_envelope (const char *bind_address)
|
||||
void test_envelope (const char *bind_address_)
|
||||
{
|
||||
void *rep = test_context_socket (ZMQ_REP);
|
||||
|
||||
TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (rep, bind_address));
|
||||
TEST_ASSERT_SUCCESS_ERRNO (zmq_bind (rep, bind_address_));
|
||||
size_t len = MAX_SOCKET_STRING;
|
||||
TEST_ASSERT_SUCCESS_ERRNO (
|
||||
zmq_getsockopt (rep, ZMQ_LAST_ENDPOINT, connect_address, &len));
|
||||
|
||||
Reference in New Issue
Block a user