commit | 286b0de74da3cba56b8cc7961a19044eb45969b2 | [log] [tgz] |
---|---|---|
author | Erik Andersen <andersen@codepoet.org> | Fri Jan 07 09:43:38 2000 +0000 |
committer | Erik Andersen <andersen@codepoet.org> | Fri Jan 07 09:43:38 2000 +0000 |
tree | c33c902699a6bf505f959d2f059b95412bb65a30 | |
parent | d38eaef70bd8e3045992d95057088b65d0fa254f [diff] |
Trivial type fix. -Erik
diff --git a/sysklogd/logger.c b/sysklogd/logger.c index 5ef622d..35bbb66 100644 --- a/sysklogd/logger.c +++ b/sysklogd/logger.c
@@ -151,8 +151,7 @@ if (fromStdinFlag==TRUE) { /* read from stdin */ - int i=0; - char c; + int c, i=0; while ((c = getc(stdin)) != EOF && i<sizeof(buf1)) { buf1[i++]=c; }