From 1e8daaceae91fb5d28c4265506d559cd27254d1d Mon Sep 17 00:00:00 2001 From: Sylvain Berfini <sylvain.berfini@belledonne-communications.com> Date: Wed, 11 Jul 2018 10:12:50 +0200 Subject: [PATCH] Fixed implicit conversion signedness build error in daemon --- daemon/daemon.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/daemon.cc b/daemon/daemon.cc index e493c5451b..2f82a6e867 100644 --- a/daemon/daemon.cc +++ b/daemon/daemon.cc @@ -515,7 +515,7 @@ void Daemon::uninitCommands() { bool Daemon::pullEvent() { bool status = false; ostringstream ostr; - ssize_t size = mEventQueue.size(); + size_t size = mEventQueue.size(); if (size != 0) size--; -- GitLab