am 1441a965: Merge "Really don\'t use TEMP_FAILURE_RETRY with close in recovery."

* commit '1441a9654feee7e32ec6b39b1992c27635feb50f':
  Really don't use TEMP_FAILURE_RETRY with close in recovery.
diff --git a/updater/blockimg.c b/updater/blockimg.c
index 42060f5..5d0f156 100644
--- a/updater/blockimg.c
+++ b/updater/blockimg.c
@@ -677,7 +677,7 @@
 
 lsout:
     if (fd != -1) {
-        TEMP_FAILURE_RETRY(close(fd));
+        close(fd);
     }
 
     if (fn) {