summaryrefslogtreecommitdiff
path: root/src/pipe.cpp
diff options
context:
space:
mode:
authorMartin Sustrik <sustrik@250bpm.com>2010-08-28 13:14:45 +0200
committerMartin Sustrik <sustrik@250bpm.com>2010-08-28 13:14:45 +0200
commitd8b975f4e73ae940c0c0f9c8c6c7aac1199fee09 (patch)
treeba7d60c37433707e6f2afe2538c966f04f2a3e92 /src/pipe.cpp
parentd90b4071151e3752208d3a9d49fb50845f89ab1b (diff)
msg_store_t renamed to swap_t
Diffstat (limited to 'src/pipe.cpp')
-rw-r--r--src/pipe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pipe.cpp b/src/pipe.cpp
index de20392..0108d56 100644
--- a/src/pipe.cpp
+++ b/src/pipe.cpp
@@ -174,7 +174,7 @@ zmq::writer_t::writer_t (object_t *parent_, pipe_t *pipe_, reader_t *reader_,
// Open the swap file, if required.
if (swap_size_ > 0) {
- swap = new (std::nothrow) msg_store_t (swap_size_);
+ swap = new (std::nothrow) swap_t (swap_size_);
zmq_assert (swap);
int rc = swap->init ();
zmq_assert (rc == 0);