From 11df9cf0678c66d7b975a13d7533588a8e946e90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sun, 27 Dec 2015 02:04:09 +0000 Subject: [PATCH] Fix build. svn path=/trunk/; revision=70435 --- reactos/lib/fslib/vfatlib/vfatlib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/lib/fslib/vfatlib/vfatlib.c b/reactos/lib/fslib/vfatlib/vfatlib.c index 8f7798becb8..930e021bf47 100644 --- a/reactos/lib/fslib/vfatlib/vfatlib.c +++ b/reactos/lib/fslib/vfatlib/vfatlib.c @@ -376,7 +376,7 @@ VfatChkdsk(IN PUNICODE_STRING DriveRoot, // NOTE: Returning the value of fs_close looks suspicious. // return fs_close(FALSE); ret = fs_close(FALSE); - DPRINT1("No need to check FS; fs_close returning %d\n", ret); + DPRINT1("No need to check FS; fs_close returning %d\n", (unsigned int)ret); return STATUS_SUCCESS; } @@ -439,8 +439,8 @@ VfatChkdsk(IN PUNICODE_STRING DriveRoot, /* Close the volume */ // NOTE: Returning the value of fs_close looks suspicious. // return fs_close(FixErrors) ? STATUS_SUCCESS : STATUS_UNSUCCESSFUL; - res = fs_close(FixErrors); - DPRINT1("fs_close returning %d\n", ret); + ret = fs_close(FixErrors); + DPRINT1("fs_close returning %d\n", (unsigned int)ret); return STATUS_SUCCESS; }