aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/macterm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macterm.c b/src/macterm.c
index 29be6659c35..fc65c4dab69 100644
--- a/src/macterm.c
+++ b/src/macterm.c
@@ -6643,8 +6643,8 @@ do_check_ram_size (void)
6643 6643
6644 if (Gestalt (gestaltPhysicalRAMSize, &physical_ram_size) != noErr 6644 if (Gestalt (gestaltPhysicalRAMSize, &physical_ram_size) != noErr
6645 || Gestalt (gestaltLogicalRAMSize, &logical_ram_size) != noErr 6645 || Gestalt (gestaltLogicalRAMSize, &logical_ram_size) != noErr
6646 || physical_ram_size > 256 * 1024 * 1024 6646 || physical_ram_size > (1 << VALBITS)
6647 || logical_ram_size > 256 * 1024 * 1024) 6647 || logical_ram_size > (1 << VALBITS))
6648 { 6648 {
6649 StopAlert (RAM_TOO_LARGE_ALERT_ID, NULL); 6649 StopAlert (RAM_TOO_LARGE_ALERT_ID, NULL);
6650 exit (1); 6650 exit (1);