lib/vfs/mc-vfs/smbfs.c: fixed printf() arguments.

Signed-off-by: Andrew Borodin <aborodin@vmail.ru>
This commit is contained in:
Enrico Weigelt, metux IT service 2010-09-13 05:46:21 +02:00 committed by Slava Zanko
parent 9678ef3b02
commit fb05515d82

View File

@ -1667,7 +1667,7 @@ smbfs_mknod (struct vfs_class *me, const char *path, mode_t mode, dev_t dev)
{
(void) me;
DEBUG(3, ("smbfs_mknod(path:%s, mode:%d, dev:%zu)\n", path, mode, dev));
DEBUG(3, ("smbfs_mknod(path:%s, mode:%d, dev:%u)\n", path, mode, (unsigned int)dev));
my_errno = EOPNOTSUPP;
return -1;
}