Problem: zmq_send doc does not match declaration

Solution: add const to pointer type
parent 3c13e922
......@@ -9,7 +9,7 @@ zmq_send - send a message part on a socket
SYNOPSIS
--------
*int zmq_send (void '*socket', void '*buf', size_t 'len', int 'flags');*
*int zmq_send (void '*socket', const void '*buf', size_t 'len', int 'flags');*
DESCRIPTION
......
......@@ -9,7 +9,7 @@ zmq_send_const - send a constant-memory message part on a socket
SYNOPSIS
--------
*int zmq_send_const (void '*socket', void '*buf', size_t 'len', int 'flags');*
*int zmq_send_const (void '*socket', const void '*buf', size_t 'len', int 'flags');*
DESCRIPTION
......
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