mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
Left out a ; on the Darwin builds in main.c
This commit is contained in:
parent
c27accc589
commit
d053898b71
2
main.c
2
main.c
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue