0
0
mirror of https://github.com/zeromq/libzmq.git synced 2024-12-26 23:01:04 +08:00

Problem: zmq_proxy signature in documentation does not match actual signature

Solution: remove extra const
This commit is contained in:
Simon Giesecke 2019-02-20 15:38:52 +01:00 committed by GitHub
parent fae88633d7
commit c05d010c01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ zmq_proxy - start built-in 0MQ proxy
SYNOPSIS
--------
*int zmq_proxy (const void '*frontend', const void '*backend', const void '*capture');*
*int zmq_proxy (void '*frontend', void '*backend', void '*capture');*
DESCRIPTION