File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 11Package: nanonext
22Type: Package
33Title: NNG (Nanomsg Next Gen) Lightweight Messaging Library
4- Version: 1.1.1.9013
4+ Version: 1.1.1.9014
55Description: R binding for NNG (Nanomsg Next Gen), a successor to ZeroMQ. NNG is
66 a socket library implementing 'Scalability Protocols', a reliable,
77 high-performance standard for common communications patterns including
Original file line number Diff line number Diff line change 1- # nanonext 1.1.1.9013 (development)
1+ # nanonext 1.1.1.9014 (development)
22
33#### New Features
44
Original file line number Diff line number Diff line change @@ -169,10 +169,10 @@ typedef enum nano_aio_typ {
169169
170170typedef struct nano_aio_s {
171171 nng_aio * aio ;
172- int mode ;
173- int result ;
174172 void * data ;
175173 void * next ;
174+ int mode ;
175+ int result ;
176176 nano_aio_typ type ;
177177} nano_aio ;
178178
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ static void request_complete_signal(void *arg) {
9090
9191static void sendaio_complete (void * arg ) {
9292
93- nng_aio * aio = (nng_aio * ) arg ;
93+ nng_aio * aio = (( nano_aio * ) arg ) -> aio ;
9494 if (nng_aio_result (aio ))
9595 nng_msg_free (nng_aio_get_msg (aio ));
9696
You can’t perform that action at this time.
0 commit comments