fixed some lint complaints

This commit is contained in:
ceriel
1991-09-30 16:24:45 +00:00
parent 8e572d417b
commit e7b4e265d4
10 changed files with 24 additions and 29 deletions

View File

@@ -45,7 +45,7 @@ o_print(va_list *ap, int flags, char *s, char c, int precision, int is_signed)
long signed_val;
unsigned long unsigned_val;
char *old_s = s;
int i, base;
int base;
switch (flags & (FL_SHORT | FL_LONG)) {
case FL_SHORT:

View File

@@ -18,7 +18,7 @@ off_t _lseek(int fildes, off_t offset, int whence);
int
fseek(FILE *stream, long int offset, int whence)
{
int count, adjust = 0;
int adjust = 0;
long pos;
stream->_flags &= ~(_IOEOF | _IOERR);