1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-02-04 03:40:07 +00:00

Minor whitespace tidying-up

This commit is contained in:
Julian Storer 2009-10-01 20:08:42 +01:00
parent 9623f6b108
commit e1a5995965
12 changed files with 2404 additions and 2404 deletions

View file

@ -307,7 +307,7 @@ bool SystemStats::isOperatingSystem64Bit() throw()
int SystemStats::getMemorySizeInMegabytes() throw()
{
MEMORYSTATUSEX mem;
mem.dwLength = sizeof (mem);
mem.dwLength = sizeof (mem);
GlobalMemoryStatusEx (&mem);
return (int) (mem.ullTotalPhys / (1024 * 1024)) + 1;
}