small coding style fix 39/43939/3
authorPawel Sikorski <p.sikorski@samsung.com>
Wed, 15 Jul 2015 08:44:16 +0000 (10:44 +0200)
committerPawel Sikorski <p.sikorski@samsung.com>
Thu, 16 Jul 2015 08:59:37 +0000 (01:59 -0700)
Change-Id: I77d5c37b7003c7d804c09fedacc766ba621fdb7a

src/wgt/step/step_rds_modify.cc

index 673f0be..73be210 100644 (file)
@@ -35,7 +35,7 @@ common_installer::Step::Status StepRDSModify::precheck() {
     LOG(ERROR) << "pkgid is not set";
     return common_installer::Step::Status::ERROR;
   }
-  if(!context_->manifest_data.get()) {
+  if (!context_->manifest_data.get()) {
     LOG(ERROR) << "no manifest info available";
     return common_installer::Step::Status::ERROR;
   }
@@ -89,7 +89,8 @@ bool StepRDSModify::AddFiles(bf::path unzip_path, bf::path install_path) {
     }
     bf::path temp_install_path(install_path / file);
     if (bf::is_directory(temp_install_path)) {
-      if (!bf::exists(temp_install_path) && (!cu::CreateDir(temp_install_path))) {
+      if (!bf::exists(temp_install_path) &&
+         (!cu::CreateDir(temp_install_path))) {
         LOG(ERROR) << "unable to create dir for temp backup data";
         return false;
       }