Fix a parameter type.

git-svn-id: svn://10.0.0.236/trunk@24060 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mcmullen%netscape.com 1999-03-13 07:07:33 +00:00
parent 56cf21a8da
commit 3b2fd6b905
2 changed files with 10 additions and 8 deletions

View File

@ -21,6 +21,7 @@
#include <sys/stat.h>
#include <direct.h>
#include <limits.h>
#include <stdlib.h>
#include "prio.h"
#include "nsError.h"
@ -411,10 +412,10 @@ PRUint32 nsFileSpec::GetDiskSpaceAvailable() const
strcat(aDrive, "\\");
PRUint32 dwSectorsPerCluster = 0;
PRUint32 dwBytesPerSector = 0;
PRUint32 dwFreeClusters = 0;
PRUint32 dwTotalClusters = 0;
DWORD dwSectorsPerCluster = 0;
DWORD dwBytesPerSector = 0;
DWORD dwFreeClusters = 0;
DWORD dwTotalClusters = 0;
if (!GetDiskFreeSpace(aDrive,
&dwSectorsPerCluster,
&dwBytesPerSector,

View File

@ -21,6 +21,7 @@
#include <sys/stat.h>
#include <direct.h>
#include <limits.h>
#include <stdlib.h>
#include "prio.h"
#include "nsError.h"
@ -411,10 +412,10 @@ PRUint32 nsFileSpec::GetDiskSpaceAvailable() const
strcat(aDrive, "\\");
PRUint32 dwSectorsPerCluster = 0;
PRUint32 dwBytesPerSector = 0;
PRUint32 dwFreeClusters = 0;
PRUint32 dwTotalClusters = 0;
DWORD dwSectorsPerCluster = 0;
DWORD dwBytesPerSector = 0;
DWORD dwFreeClusters = 0;
DWORD dwTotalClusters = 0;
if (!GetDiskFreeSpace(aDrive,
&dwSectorsPerCluster,
&dwBytesPerSector,