diff options
Diffstat (limited to 'AudioManagerDaemon')
-rw-r--r-- | AudioManagerDaemon/include/CAmRoutingSender.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AudioManagerDaemon/include/CAmRoutingSender.h b/AudioManagerDaemon/include/CAmRoutingSender.h index ec31560..d1e26b5 100644 --- a/AudioManagerDaemon/include/CAmRoutingSender.h +++ b/AudioManagerDaemon/include/CAmRoutingSender.h @@ -118,7 +118,7 @@ private: { bool operator()(const am_Handle_s& a, const am_Handle_s& b) const { - return (a.handle < b.handle); + return (a.handle<b.handle || (a.handle==b.handle && a.handleType<b.handleType)); } }; |