diff options
author | rgrimes <rgrimes@FreeBSD.org> | 1995-05-30 05:51:47 +0000 |
---|---|---|
committer | rgrimes <rgrimes@FreeBSD.org> | 1995-05-30 05:51:47 +0000 |
commit | f05428e4cd63dde97bac14b84dd146a5c00455e3 (patch) | |
tree | e1331adb5d216f2b3fa6baa6491752348d2e5f10 /lib/libmytinfo/addstr.c | |
parent | 6de57e42c294763c78d77b0a9a7c5a08008a378a (diff) | |
download | FreeBSD-src-f05428e4cd63dde97bac14b84dd146a5c00455e3.zip FreeBSD-src-f05428e4cd63dde97bac14b84dd146a5c00455e3.tar.gz |
Remove trailing whitespace.
Diffstat (limited to 'lib/libmytinfo/addstr.c')
-rw-r--r-- | lib/libmytinfo/addstr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libmytinfo/addstr.c b/lib/libmytinfo/addstr.c index 50fb411..d3d7444 100644 --- a/lib/libmytinfo/addstr.c +++ b/lib/libmytinfo/addstr.c @@ -18,13 +18,13 @@ static char const SCCSid[] = "@(#) mytinfo addstr.c 3.2 92/02/01 public domain, /* * I think this routine could be improved, as it is now it searches a * linked list of strbufs for one that has enough room left for the - * string. The only thing else I can think of doing would be to + * string. The only thing else I can think of doing would be to * expand a buffer by realloc and then fix the string pointers if it * moves. */ static struct strbuf *strbuf = NULL; - + struct strbuf * _endstr() { register struct strbuf *p; @@ -81,7 +81,7 @@ TERMINAL *p; { q = p->strbuf; while(q != NULL) { - p->strbuf = q->next; + p->strbuf = q->next; free((anyptr) q); q = p->strbuf; } |