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

Commit 291ce5b8 authored by Andreas Gampe's avatar Andreas Gampe Committed by Gerrit Code Review
Browse files

Merge "Fs_mgr: Fix format code"

parents eff8c801 eb69e857
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -431,7 +431,7 @@ static int check_verity_restart(const char *fname)
    }

    if (lseek(fd, s.st_size - size, SEEK_SET) == -1) {
        ERROR("Failed to lseek %zu %s (%s)\n", s.st_size - size, fname,
        ERROR("Failed to lseek %jd %s (%s)\n", (intmax_t)(s.st_size - size), fname,
            strerror(errno));
        goto out;
    }