Skip to content

Commit 3d486d1

Browse files
committed
Removed some extraneous diffs
1 parent c626d69 commit 3d486d1

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

Source/Plugins/EventBroadcaster/EventBroadcaster.cpp

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ int EventBroadcaster::setListeningPort(int port, bool forceRestart)
167167
if (!newSocket->isValid())
168168
{
169169
status = zmq_errno();
170-
std::cout << "Failed to open socket: " << zmq_strerror(status) << std::endl;
170+
std::cout << "Failed to create socket: " << zmq_strerror(status) << std::endl;
171171
}
172172
else
173173
{
@@ -193,14 +193,13 @@ int EventBroadcaster::setListeningPort(int port, bool forceRestart)
193193
}
194194
#endif
195195
}
196-
196+
197197
// update editor
198198
auto editor = static_cast<EventBroadcasterEditor*>(getEditor());
199199
if (editor != nullptr)
200-
{
200+
{
201201
editor->setDisplayedPort(getListeningPort());
202202
}
203-
std::cout << "Binded port :\t" << listeningPort << std::endl;
204203
return status;
205204
}
206205

0 commit comments

Comments
 (0)