Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8abeee19 authored by Dan Pasanen's avatar Dan Pasanen Committed by Dees Troy
Browse files

twrp: fix incompatible pointer to integer conversions

Change-Id: Idb430d3e6fab88eddba57c0961923663ca981148
parent bfb72b06
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -134,7 +134,7 @@ int cmd_bml_backup_raw_partition(const char *partition, const char *out_file)
        }
    }

    fsync(out);
    fsync(fileno(out));
    ret = 0;
ERROR1:
    fclose ( out );
+2 −2
Original line number Diff line number Diff line
@@ -458,7 +458,7 @@ mmc_raw_copy (const MmcPartition *partition, char *in_file) {
        }
    }

    fsync(out);
    fsync(fileno(out));
    ret = 0;
ERROR1:
    fclose ( out );
@@ -509,7 +509,7 @@ mmc_raw_dump_internal (const char* in_file, const char *out_file) {
        }
    }

    fsync(out);
    fsync(fileno(out));
    ret = 0;
ERROR1:
    fclose ( out );