summaryrefslogtreecommitdiff
path: root/src/components/application_manager/src/commands/mobile/set_app_icon_request.cc
diff options
context:
space:
mode:
authorSho Amano <samano@xevo.com>2017-08-12 13:01:23 +0900
committerSho Amano <samano@xevo.com>2017-08-12 13:07:06 +0900
commitfe754c475d29a635d6c338e8f235341e21b97724 (patch)
treec3671b577eed24303ca7c7451825ac4a1e18bfd6 /src/components/application_manager/src/commands/mobile/set_app_icon_request.cc
parent4e7e56009daf055d3a5ef51d1d5c1587417390c2 (diff)
downloadsdl_core-fe754c475d29a635d6c338e8f235341e21b97724.tar.gz
fix: build break in set_app_icon_request.cc
Diffstat (limited to 'src/components/application_manager/src/commands/mobile/set_app_icon_request.cc')
-rw-r--r--src/components/application_manager/src/commands/mobile/set_app_icon_request.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/application_manager/src/commands/mobile/set_app_icon_request.cc b/src/components/application_manager/src/commands/mobile/set_app_icon_request.cc
index a1c0d3ba5c..5afddfb4d0 100644
--- a/src/components/application_manager/src/commands/mobile/set_app_icon_request.cc
+++ b/src/components/application_manager/src/commands/mobile/set_app_icon_request.cc
@@ -120,10 +120,10 @@ void SetAppIconRequest::Run() {
void SetAppIconRequest::CopyToIconStorage(
const std::string& path_to_file) const {
- if (!application_manager_.protocol_handler()
- .get_settings()
- .max_supported_protocol_version() >=
- protocol_handler::MajorProtocolVersion::PROTOCOL_VERSION_4) {
+ if (!(application_manager_.protocol_handler()
+ .get_settings()
+ .max_supported_protocol_version() >=
+ protocol_handler::MajorProtocolVersion::PROTOCOL_VERSION_4)) {
LOG4CXX_WARN(logger_,
"Icon copying skipped, since protocol ver. 4 is not enabled.");
return;