diff options
| author | Garrett D'Amore <garrett@damore.org> | 2016-12-22 17:38:46 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2016-12-22 17:38:46 -0800 |
| commit | 89c847f1f52969ee2ae6ed35018eef40366ca061 (patch) | |
| tree | ba3f3c2da64e4a74c69d315b2198df59bcd4441b /src/protocol | |
| parent | 934c1316ae47754a2e368c65228c3cbfe552680f (diff) | |
| download | nng-89c847f1f52969ee2ae6ed35018eef40366ca061.tar.gz nng-89c847f1f52969ee2ae6ed35018eef40366ca061.tar.bz2 nng-89c847f1f52969ee2ae6ed35018eef40366ca061.zip | |
Work on endpoints. More C99 & type cleanups.
Diffstat (limited to 'src/protocol')
| -rw-r--r-- | src/protocol/pair/pair.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/pair/pair.c b/src/protocol/pair/pair.c index 364a72fa..cabd3f06 100644 --- a/src/protocol/pair/pair.c +++ b/src/protocol/pair/pair.c @@ -21,8 +21,8 @@ typedef struct nni_pair_sock { nni_socket * sock; nni_pipe * pipe; nni_mutex mx; - nni_msgqueue_t uwq; - nni_msgqueue_t urq; + nni_msgqueue * uwq; + nni_msgqueue * urq; } nni_pair_sock; // An nni_pair_pipe is our per-pipe protocol private structure. We keep |
