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

Commit 9cc8a29e authored by rapperskull's avatar rapperskull
Browse files

Fix clang error about incompatible assignment in simg2simg.cpp

Change-Id: Ibb5c9431e51525c083e2981979e831d7f0b8ea1d
parent 7e17f702
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -72,7 +72,7 @@ int main(int argc, char* argv[]) {
    exit(-1);
    exit(-1);
  }
  }


  out_s = calloc(sizeof(struct sparse_file*), files);
  out_s = (struct sparse_file**)calloc(sizeof(struct sparse_file*), files);
  if (!out_s) {
  if (!out_s) {
    fprintf(stderr, "Failed to allocate sparse file array\n");
    fprintf(stderr, "Failed to allocate sparse file array\n");
    exit(-1);
    exit(-1);