diff options
author | Martin Sustrik <sustrik@250bpm.com> | 2012-05-31 09:09:43 +0200 |
---|---|---|
committer | Martin Sustrik <sustrik@250bpm.com> | 2012-06-01 11:02:35 +0200 |
commit | 58d54740785eb2c7208a01afb5bd9736e5808069 (patch) | |
tree | 19d24c817201842b3781328d5f1a5fb25138a496 /src/xrep.cpp | |
parent | f84ebfdbc64b774b1f00f5b98494e66b8a88fb0b (diff) |
Assertions improved
This patch is replaces generic xs_asserts by errno_assers and
alloc_asserts as appropriate.
It is based on 0MQ patch by Martin Hurton.
Signed-off-by: Martin Sustrik <sustrik@250bpm.com>
Diffstat (limited to 'src/xrep.cpp')
-rw-r--r-- | src/xrep.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xrep.cpp b/src/xrep.cpp index 30f1419..0e6acb2 100644 --- a/src/xrep.cpp +++ b/src/xrep.cpp @@ -319,7 +319,7 @@ bool xs::xrep_t::xhas_in () id.close (); return false; } - xs_assert (rc == 0); + errno_assert (rc == 0); // We have first part of the message prefetched now. We will store the // prefetched identity as well. |