diff options
author | Tor Lillqvist <tml@iki.fi> | 2013-08-01 20:39:14 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2013-08-01 20:49:57 +0300 |
commit | 089a1f5274ac6eaec31d08127ecc86ee32a63244 (patch) | |
tree | 6553460a6772fbf1f96cf7c5a6947d26f4e49032 /sd | |
parent | bbbda0cf1afefeab3715a3a1b3c6a10156ef4fda (diff) |
Include <sal/log.hxx> so that SAL_INFO actually compiles as expected
Change-Id: Ib7209627052563391eedadb671ed164a1cf863c0
Diffstat (limited to 'sd')
-rw-r--r-- | sd/source/ui/remotecontrol/AvahiNetworkService.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sd/source/ui/remotecontrol/AvahiNetworkService.cxx b/sd/source/ui/remotecontrol/AvahiNetworkService.cxx index 68354332df12..19f9f842309a 100644 --- a/sd/source/ui/remotecontrol/AvahiNetworkService.cxx +++ b/sd/source/ui/remotecontrol/AvahiNetworkService.cxx @@ -20,6 +20,8 @@ #include <avahi-common/timeval.h> #include <avahi-common/thread-watch.h> +#include <sal/log.hxx> + #include "AvahiNetworkService.hxx" #include "ZeroconfService.hxx" @@ -41,7 +43,7 @@ static void entry_group_callback(AvahiEntryGroup *g, AvahiEntryGroupState state, switch (state) { case AVAHI_ENTRY_GROUP_ESTABLISHED : /* The entry group has been established successfully */ - SAL_INFO( "sdremote.wifi", "Service " << avahiService->getName().c_str() << " successfully established." ); + SAL_INFO( "sdremote.wifi", "Service " << avahiService->getName() << " successfully established." ); break; case AVAHI_ENTRY_GROUP_COLLISION : { |