[Libsysio-commit] HEAD: libsysio/drivers/native fs_native.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2004-01-21 15:01:14
|
Update of /cvsroot/libsysio/libsysio/drivers/native In directory sc8-pr-cvs1:/tmp/cvs-serv27523 Modified Files: fs_native.c Log Message: Removed the printf error message from the fcntl routine. We don't have printf and the symbol reference madness is bad enough without calling into the IO portions of glibc from here. Index: fs_native.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/drivers/native/fs_native.c,v retrieving revision 1.27 retrieving revision 1.28 diff -u -w -b -B -p -r1.27 -r1.28 --- fs_native.c 21 Jan 2004 14:44:53 -0000 1.27 +++ fs_native.c 21 Jan 2004 15:01:11 -0000 1.28 @@ -1362,7 +1362,6 @@ native_inop_fcntl(struct inode *ino, arg = va_arg(ap, long); return syscall(SYS_fcntl, nino->ni_fd, cmd, arg); default: - printf("uncatched cmd %d\n", cmd); abort(); } return -1; |