Skip to content

Commit

Permalink
Fix small typos
Browse files Browse the repository at this point in the history
  • Loading branch information
hiltjo committed Apr 11, 2020
1 parent c114526 commit e997303
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions st.c
Original file line number Diff line number Diff line change
Expand Up @@ -823,23 +823,22 @@ ttyread(void)
{
static char buf[BUFSIZ];
static int buflen = 0;
int written;
int ret;
int ret, written;

/* append read bytes to unprocessed bytes */
ret = read(cmdfd, buf+buflen, LEN(buf)-buflen);

switch (ret) {
case 0:
fputs("Found EOF in input\n", stderr);
fputs("found EOF in input\n", stderr);
exit(0);
case -1:
die("couldn't read from shell: %s\n", strerror(errno));
default:
buflen += ret;
written = twrite(buf, buflen, 0);
buflen -= written;
/* keep any uncomplete utf8 char for the next call */
/* keep any incomplete UTF-8 byte sequence for the next call */
if (buflen > 0)
memmove(buf, buf + written, buflen);
return ret;
Expand Down

0 comments on commit e997303

Please sign in to comment.