Skip to content

Commit

Permalink
.. autoformat
Browse files Browse the repository at this point in the history
  • Loading branch information
gdraheim committed Feb 28, 2024
1 parent 174c22d commit 593b12e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions zzip/fseeko.c
Original file line number Diff line number Diff line change
Expand Up @@ -383,12 +383,11 @@ zzip_entry_findfirst(FILE* disk)

if (! (0 <= root && root < disksize)) {
debug3("bogus rootseek value %lli (disksize %lli)", /* .. */
(long long)root, (long long)disksize);
(long long) root, (long long) disksize);
errno = EBADMSG;
goto error2;
}
if (fseeko(disk, root, SEEK_SET) == -1)
{
if (fseeko(disk, root, SEEK_SET) == -1) {
debug2("next seeko %s", strerror(errno));
goto error2; /* EBADF */
}
Expand Down

0 comments on commit 593b12e

Please sign in to comment.