summaryrefslogtreecommitdiff
path: root/AudioManagerDaemon/src/CAmControlSender.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'AudioManagerDaemon/src/CAmControlSender.cpp')
-rw-r--r--AudioManagerDaemon/src/CAmControlSender.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/AudioManagerDaemon/src/CAmControlSender.cpp b/AudioManagerDaemon/src/CAmControlSender.cpp
index 6b81619..c85bd57 100644
--- a/AudioManagerDaemon/src/CAmControlSender.cpp
+++ b/AudioManagerDaemon/src/CAmControlSender.cpp
@@ -481,7 +481,7 @@ void CAmControlSender::receiverCallback(const pollfd pollfd, const sh_pollHandle
(void) handle;
(void) userData;
//get the signal number from the socket
- read(pollfd.fd, &mSignal, sizeof(mSignal));
+ ssize_t result = read(pollfd.fd, &mSignal, sizeof(mSignal));
}
bool CAmControlSender::checkerCallback(const sh_pollHandle_t handle, void* userData)