From: Thomas Veerman Date: Mon, 17 Sep 2012 15:29:38 +0000 (+0000) Subject: VFS: fix GCC compilation error X-Git-Tag: v3.2.1~332 X-Git-Url: http://zhaoyanbai.com/repos/Bv9ARM.html?a=commitdiff_plain;h=c087a60ed2da3d5967020ea1f6bdec32f9344452;p=minix.git VFS: fix GCC compilation error --- diff --git a/servers/vfs/device.c b/servers/vfs/device.c index 53ba6a203..0d7d5da96 100644 --- a/servers/vfs/device.c +++ b/servers/vfs/device.c @@ -1119,8 +1119,8 @@ int maj; if (r == OK) return; - printf("VFS: file on dev %d/%d re-open failed: %d; " - "invalidated %d fd's.\n", major_dev, minor_dev, r, n); + printf("VFS: file on dev %d/%d re-open failed: %d\n", + major_dev, minor_dev, r); } /* File descriptor is to be closed when driver restarts. */