Author: hbelusca Date: Sun Dec 27 02:04:09 2015 New Revision: 70435
URL: http://svn.reactos.org/svn/reactos?rev=70435&view=rev Log: Fix build.
Modified: trunk/reactos/lib/fslib/vfatlib/vfatlib.c
Modified: trunk/reactos/lib/fslib/vfatlib/vfatlib.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/fslib/vfatlib/vfatlib.c... ============================================================================== --- trunk/reactos/lib/fslib/vfatlib/vfatlib.c [iso-8859-1] (original) +++ trunk/reactos/lib/fslib/vfatlib/vfatlib.c [iso-8859-1] Sun Dec 27 02:04:09 2015 @@ -376,7 +376,7 @@ // 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 @@ /* 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; }