diff options
| author | Garrett D'Amore <garrett@damore.org> | 2016-12-22 23:40:01 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2016-12-22 23:40:01 -0800 |
| commit | 236781a2c13feb96a6dd56f762b2df6fec1dfee5 (patch) | |
| tree | f04211282c1e9e57e6dd9def60a11db1e4545906 /src/core/socket.h | |
| parent | bca0a27e2f4978a5a74748b07613c0e30014880c (diff) | |
| download | nng-236781a2c13feb96a6dd56f762b2df6fec1dfee5.tar.gz nng-236781a2c13feb96a6dd56f762b2df6fec1dfee5.tar.bz2 nng-236781a2c13feb96a6dd56f762b2df6fec1dfee5.zip | |
More C99-ification. Also end the _t thing for types (ISO C rules).
Diffstat (limited to 'src/core/socket.h')
| -rw-r--r-- | src/core/socket.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/socket.h b/src/core/socket.h index 05113489..1376c454 100644 --- a/src/core/socket.h +++ b/src/core/socket.h @@ -27,8 +27,8 @@ struct nng_socket { // XXX: options nni_duration s_linger; - nni_list_t s_eps; // active endpoints - nni_list_t s_pipes; // pipes for this socket + nni_list s_eps; // active endpoints + nni_list s_pipes; // pipes for this socket int s_closing; // Socket is closing int s_besteffort; // Best effort mode delivery |
