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

Commit f35183da authored by Stephen Hines's avatar Stephen Hines Committed by Gerrit Code Review
Browse files

Merge "Fix an unintialized return value."

parents 9187a721 45b11d90
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -188,7 +188,7 @@ int sparse_file_foreach_chunk(struct sparse_file* s, bool sparse, bool crc,
                              int (*write)(void* priv, const void* data, size_t len,
                                           unsigned int block, unsigned int nr_blocks),
                              void* priv) {
  int ret;
  int ret = 0;
  int chunks;
  struct chunk_data chk;
  struct output_file* out;