[Libsysio-commit] HEAD: libsysio/drivers/native fs_native.c
Brought to you by:
lward
From: Ruth K. <rk...@us...> - 2004-10-14 16:16:54
|
Update of /cvsroot/libsysio/libsysio/drivers/native In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26835 Modified Files: fs_native.c Log Message: fix typo Index: fs_native.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/drivers/native/fs_native.c,v retrieving revision 1.52 retrieving revision 1.53 diff -u -w -b -B -p -r1.52 -r1.53 --- fs_native.c 14 Oct 2004 14:59:28 -0000 1.52 +++ fs_native.c 14 Oct 2004 16:16:45 -0000 1.53 @@ -766,9 +766,9 @@ _ut(const char *path, time_t actime, tim struct timeval tv[2]; tv[0].tv_sec = actime; - tv[0].tv_nsec = 0; + tv[0].tv_usec = 0; tv[1].tv_sec = modtime; - tv[1].tv_nsec = 0; + tv[1].tv_usec = 0; return syscall(SYSIO_SYS_utimes, path, &tv); } #endif |