summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYabin Cui <yabinc@google.com>2016-03-30 00:35:58 +0200
committerYabin Cui <yabinc@google.com>2016-03-30 00:35:58 +0200
commitffa3a1c222c1a8b0296f97dfa3efb35108ac6d60 (patch)
treef1561f894b1c73185ed7fbcde9bd29b417cd1b14
parentAdd string for Installing_security_update (diff)
downloadandroid_bootable_recovery-ffa3a1c222c1a8b0296f97dfa3efb35108ac6d60.tar
android_bootable_recovery-ffa3a1c222c1a8b0296f97dfa3efb35108ac6d60.tar.gz
android_bootable_recovery-ffa3a1c222c1a8b0296f97dfa3efb35108ac6d60.tar.bz2
android_bootable_recovery-ffa3a1c222c1a8b0296f97dfa3efb35108ac6d60.tar.lz
android_bootable_recovery-ffa3a1c222c1a8b0296f97dfa3efb35108ac6d60.tar.xz
android_bootable_recovery-ffa3a1c222c1a8b0296f97dfa3efb35108ac6d60.tar.zst
android_bootable_recovery-ffa3a1c222c1a8b0296f97dfa3efb35108ac6d60.zip
-rw-r--r--uncrypt/uncrypt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/uncrypt/uncrypt.cpp b/uncrypt/uncrypt.cpp
index e783b9e7a..ee4d616a7 100644
--- a/uncrypt/uncrypt.cpp
+++ b/uncrypt/uncrypt.cpp
@@ -372,7 +372,7 @@ static int produce_block_map(const char* path, const char* map_file, const char*
ALOGE("failed to fsync \"%s\": %s", tmp_map_file.c_str(), strerror(errno));
return -1;
}
- if (close(mapfd.get() == -1)) {
+ if (close(mapfd.get()) == -1) {
ALOGE("failed to close %s: %s", tmp_map_file.c_str(), strerror(errno));
return -1;
}
@@ -406,7 +406,7 @@ static int produce_block_map(const char* path, const char* map_file, const char*
ALOGE("failed to fsync %s: %s", dir_name.c_str(), strerror(errno));
return -1;
}
- if (close(dfd.get() == -1)) {
+ if (close(dfd.get()) == -1) {
ALOGE("failed to close %s: %s", dir_name.c_str(), strerror(errno));
return -1;
}