summaryrefslogtreecommitdiff
path: root/mqueue.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mqueue.cpp')
-rw-r--r--mqueue.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/mqueue.cpp b/mqueue.cpp
index 814c459d..bcde62bf 100644
--- a/mqueue.cpp
+++ b/mqueue.cpp
@@ -104,7 +104,7 @@ size_t EqualityComparisonFilter::ChannelPut2(const std::string &channel, const b
size_t len = length;
const byte *data = q2.Spy(len);
len = STDMIN(len, length);
- if (memcmp(inString, data, len) != 0)
+ if (std::memcmp(inString, data, len) != 0)
goto mismatch;
inString += len;
length -= len;