minor bugfixes caught by clang warnings

This commit is contained in:
Ben Gras 2011-11-18 12:18:23 +01:00
parent 79285c3664
commit ee8602a486
2 changed files with 2 additions and 2 deletions

View file

@ -157,7 +157,7 @@ __waddbytes(WINDOW *win, const char *bytes, int count, attr_t attr)
/* not a valid conversion just eat a char */
wc = *bytes;
n = 1;
(void)memset(&st, 0, sizeof(&st));
(void)memset(&st, 0, sizeof(st));
} else if (wc == 0) {
break;
}

View file

@ -20,7 +20,7 @@ ssize_t pread64(int fd, void *buffer, size_t nbytes, u64_t where)
if (lseek64(fd, make64(0,0), SEEK_CUR, &here) < 0) return(-1);
if (lseek64(fd, where, SEEK_SET, NULL) < 0) return(-1);
if ((r = read(fd, buffer, nbytes)) < 0) {
int e ; errno;
int e = errno;
lseek64(fd, here, SEEK_SET, NULL);
errno = e;
return(-1);