1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- Removed a couple of compiler warnings; fishing for more...

git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15040 87f5fb63-7c3d-0410-a384-fd976d0f7a62
This commit is contained in:
Olaf Barthel
2005-10-11 09:28:29 +00:00
parent ccfea73fc5
commit b861ed19c4
5 changed files with 18 additions and 21 deletions

View File

@ -1,5 +1,5 @@
/*
* $Id: termios_tcsetattr.c,v 1.2 2005-07-06 18:48:53 obarthel Exp $
* $Id: termios_tcsetattr.c,v 1.3 2005-10-11 09:28:29 obarthel Exp $
*
* :ts=4
*
@ -135,7 +135,7 @@ int
tcsetattr(int file_descriptor,int how,struct termios *tios)
{
int result = ERROR;
struct fd *fd;
struct fd *fd = NULL;
struct termios new_tios;
int type;