mirror of
https://github.com/zeromq/libzmq.git
synced 2025-10-29 12:18:04 +01:00
Change NULL to 0 to keep compatibility with some cross-compiling GCC
versions
This commit is contained in:
@@ -149,7 +149,7 @@ namespace zmq
|
||||
bool stalled ()
|
||||
{
|
||||
// Check whether there was decoding error.
|
||||
if (unlikely (static_cast <T*> (this)->next == NULL))
|
||||
if (unlikely (static_cast <T*> (this)->next == 0))
|
||||
return false;
|
||||
|
||||
while (!to_read) {
|
||||
|
||||
Reference in New Issue
Block a user