pclose: Fix other places where we only tested pclose == -1.
[libguestfs.git] / src / appliance.c
index 5683882..6629abb 100644 (file)
@@ -240,7 +240,7 @@ calculate_supermin_checksum (guestfs_h *g, const char *supermin_path)
     return NULL;
   }
 
-  if (pclose (pp) == -1) {
+  if (pclose (pp) != 0) {
     warning (g, "pclose: %m");
     return NULL;
   }