Left out a ; on the Darwin builds in main.c

This commit is contained in:
Con Kolivas 2010-11-06 09:11:14 +11:00
parent c27accc589
commit d053898b71

2
main.c
View file

@ -533,7 +533,7 @@ static i64 get_ram(void)
sysctl(mib, 2, NULL, &len, NULL, 0); sysctl(mib, 2, NULL, &len, NULL, 0);
p = malloc(len); p = malloc(len);
sysctl(mib, 2, p, &len, NULL, 0); sysctl(mib, 2, p, &len, NULL, 0);
ramsize = *p ramsize = *p;
return ramsize; return ramsize;
} }