[Libsysio-commit] HEAD: libsysio/src file.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2010-07-16 12:16:46
|
Update of /cvsroot/libsysio/libsysio/src In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv19833 Modified Files: file.c Log Message: Fixed format in a cprintf, it had a missing percent-sign. Index: file.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/src/file.c,v retrieving revision 1.25 retrieving revision 1.26 diff -u -w -b -B -p -r1.25 -r1.26 --- file.c 6 Dec 2008 18:29:13 -0000 1.25 +++ file.c 16 Jul 2010 12:16:20 -0000 1.26 @@ -114,9 +114,10 @@ _sysio_fgone(struct file *fil) PATH_SEPARATOR, &path) != 0) path = error_path; - _sysio_cprintf("[lu]\"%s\" pnode won't close (%d)\n", + _sysio_cprintf("[%lu]\"%s\" pnode won't close (%d)\n", fil->f_pno->p_mount->mnt_fs->fs_id, - path); + path, + err); if (path != error_path) free(path); break; |