mirror of
https://github.com/reactos/reactos.git
synced 2024-12-27 09:34:43 +00:00
Fixed return value in CdfsGetFsSizeInformation.
svn path=/trunk/; revision=2937
This commit is contained in:
parent
0ef49e3484
commit
b6c40390d2
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@
|
|||
* along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
*/
|
||||
/* $Id: volinfo.c,v 1.2 2002/05/01 21:52:05 ekohl Exp $
|
||||
/* $Id: volinfo.c,v 1.3 2002/05/07 22:42:46 hbirr Exp $
|
||||
*
|
||||
* COPYRIGHT: See COPYING in the top level directory
|
||||
* PROJECT: ReactOS kernel
|
||||
|
@ -118,7 +118,7 @@ CdfsGetFsSizeInformation(PDEVICE_OBJECT DeviceObject,
|
|||
PULONG BufferLength)
|
||||
{
|
||||
PDEVICE_EXTENSION DeviceExt;
|
||||
NTSTATUS Status;
|
||||
NTSTATUS Status = STATUS_SUCCESS;
|
||||
|
||||
DPRINT("CdfsGetFsSizeInformation()\n");
|
||||
DPRINT("FsSizeInfo = %p\n", FsSizeInfo);
|
||||
|
|
Loading…
Reference in a new issue