diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-05-02 20:27:48 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-05-02 20:27:48 +0000 |
commit | e6f3bf2a682ffaa7a8bebda4610a9d32b251cf01 (patch) | |
tree | cc58322435d003ef8d86810cbdda3446f62a7e0d /src/common/util.h | |
parent | 3dd1ef878364b7dee005d399076ff1da7118a748 (diff) | |
download | tor-e6f3bf2a682ffaa7a8bebda4610a9d32b251cf01.tar.gz tor-e6f3bf2a682ffaa7a8bebda4610a9d32b251cf01.zip |
tor_assert(), not assert()
svn:r1777
Diffstat (limited to 'src/common/util.h')
-rw-r--r-- | src/common/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.h b/src/common/util.h index 1976e6ad54..465078aacb 100644 --- a/src/common/util.h +++ b/src/common/util.h @@ -256,7 +256,7 @@ const char *tor_socket_strerror(int e); #define ERRNO_IS_EINPROGRESS(e) ((e) == EINPROGRESS) #define ERRNO_IS_CONN_EINPROGRESS(e) ((e) == EINPROGRESS) #define tor_socket_errno(sock) (errno) -#define tor_socket_strerror(e) strerror(e) +#define tor_socket_strerror(e) strerror(e) #endif #endif |