Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 72237
b: refs/heads/master
c: babed5c
h: refs/heads/master
i:
  72235: 4b53c25
v: v3
  • Loading branch information
Glauber de Oliveira Costa authored and Rusty Russell committed Oct 23, 2007
1 parent c250c76 commit 573b081
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 25e82eba3a351cc3b263cae765a8786c827e42af
refs/heads/master: babed5c00225f109d6ebea368ad2deea2abcce32
4 changes: 2 additions & 2 deletions trunk/Documentation/lguest/lguest.c
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ static unsigned long entry_point(void *start, void *end,
if (memcmp(p, "GenuineLguest", strlen("GenuineLguest")) == 0)
return (long)p + strlen("GenuineLguest") + page_offset;

err(1, "Is this image a genuine lguest?");
errx(1, "Is this image a genuine lguest?");
}

/* This routine takes an open vmlinux image, which is in ELF, and maps it into
Expand Down Expand Up @@ -858,7 +858,7 @@ static u32 handle_block_output(int fd, const struct iovec *iov,
/* We first check that the read or write is within the length of the
* block file. */
if (off >= device_len)
err(1, "Bad offset %llu vs %llu", off, device_len);
errx(1, "Bad offset %llu vs %llu", off, device_len);
/* Move to the right location in the block file. This shouldn't fail,
* but best to check. */
if (lseek64(dev->fd, off, SEEK_SET) != off)
Expand Down

0 comments on commit 573b081

Please sign in to comment.