From ca122e9d01f44194bb2a107ed1f8275a0b17c319 Mon Sep 17 00:00:00 2001 From: Volodymyr Korniichuk <9173519@gmail.com> Date: Tue, 8 Oct 2013 00:40:30 +0300 Subject: [PATCH] Typo in type name "emTPy_slots_t" https://zeromq.jira.com/browse/LIBZMQ-565 --- src/ctx.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ctx.hpp b/src/ctx.hpp index 9b6d8631..74733219 100644 --- a/src/ctx.hpp +++ b/src/ctx.hpp @@ -132,8 +132,8 @@ namespace zmq sockets_t sockets; // List of unused thread slots. - typedef std::vector emtpy_slots_t; - emtpy_slots_t empty_slots; + typedef std::vector empty_slots_t; + empty_slots_t empty_slots; // If true, zmq_init has been called but no socket has been created // yet. Launching of I/O threads is delayed.