0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-27 07:31:03 +08:00

Merge pull request #3861 from gummif/gfa/send-doc

Problem: zmq_send doc does not match declaration
This commit is contained in:
Luca Boccassi 2020-04-09 15:02:03 +01:00 committed by GitHub
commit ae45ac4e1f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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
--------
*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

View File

@ -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