diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-01-18 18:29:41 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-01-18 18:32:06 -0800 |
| commit | 8049d822b3d8ea8bd11793369004c638d833964e (patch) | |
| tree | d4ebfef8b3b5d80c8693f71ac6cea3ff91dc12ba /src/protocol | |
| parent | 1e4cf4e7c872a705a41bca66dd377ca2dbbe0d69 (diff) | |
| download | nng-8049d822b3d8ea8bd11793369004c638d833964e.tar.gz nng-8049d822b3d8ea8bd11793369004c638d833964e.tar.bz2 nng-8049d822b3d8ea8bd11793369004c638d833964e.zip | |
fixes #12 SURVEY hang in Travis
Diffstat (limited to 'src/protocol')
| -rw-r--r-- | src/protocol/survey/respond.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/protocol/survey/respond.c b/src/protocol/survey/respond.c index 3a4bf52d..5603b675 100644 --- a/src/protocol/survey/respond.c +++ b/src/protocol/survey/respond.c @@ -392,14 +392,13 @@ nni_resp_sock_rfilter(void *arg, nni_msg *msg) } -// This is the global protocol structure -- our linkage to the core. -// This should be the only global non-static symbol in this file. static nni_proto_pipe_ops nni_resp_pipe_ops = { .pipe_init = nni_resp_pipe_init, .pipe_fini = nni_resp_pipe_fini, .pipe_add = nni_resp_pipe_add, .pipe_rem = nni_resp_pipe_rem, - .pipe_worker = { nni_resp_pipe_send,nni_resp_pipe_recv }, + .pipe_worker = { nni_resp_pipe_send, + nni_resp_pipe_recv }, }; static nni_proto_sock_ops nni_resp_sock_ops = { |
