0
0
mirror of https://github.com/zeromq/libzmq.git synced 2025-01-13 17:27:57 +08:00

Problem: zmq_send doc does not match declaration

Solution: add const to pointer type
This commit is contained in:
Gudmundur Adalsteinsson 2020-04-09 13:55:42 +00:00
parent 3c13e9222d
commit cbdf075658
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ zmq_send - send a message part on a socket
SYNOPSIS 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 DESCRIPTION

View File

@ -9,7 +9,7 @@ zmq_send_const - send a constant-memory message part on a socket
SYNOPSIS 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 DESCRIPTION