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

Commit 9f1edaec authored by Elliott Hughes's avatar Elliott Hughes Committed by android-build-merger
Browse files

Merge "Fix parameter to lseek"

am: 4a8d1255

* commit '4a8d1255':
  Fix parameter to lseek
parents 5d5e8c2f 4a8d1255
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -40,7 +40,6 @@ int main(int argc, char *argv[])
	int in;
	int out;
	int i;
	int ret;
	struct sparse_file *s;

	if (argc < 3) {
@@ -71,10 +70,12 @@ int main(int argc, char *argv[])
			exit(-1);
		}

		lseek(out, SEEK_SET, 0);
		if (lseek(out, 0, SEEK_SET) == -1) {
			perror("lseek failed");
			exit(EXIT_FAILURE);
		}

		ret = sparse_file_write(s, out, false, false, false);
		if (ret < 0) {
		if (sparse_file_write(s, out, false, false, false) < 0) {
			fprintf(stderr, "Cannot write output file\n");
			exit(-1);
		}