summaryrefslogtreecommitdiffstats
path: root/loader2
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2005-09-23 19:28:19 +0000
committerJeremy Katz <katzj@redhat.com>2005-09-23 19:28:19 +0000
commited00d10e697f1e4e56412e93cdcc965f64ff867e (patch)
treea3e5b4e7115b7c26c8b5e3135530611093fb9c62 /loader2
parent2635536279fa9b4c14a3f79f920a89d9c0add6e9 (diff)
downloadanaconda-ed00d10e697f1e4e56412e93cdcc965f64ff867e.tar.gz
anaconda-ed00d10e697f1e4e56412e93cdcc965f64ff867e.tar.xz
anaconda-ed00d10e697f1e4e56412e93cdcc965f64ff867e.zip
2005-09-23 Jeremy Katz <katzj@redhat.com>
* loader2/urlinstall.c: Silly fix for constant.
Diffstat (limited to 'loader2')
-rw-r--r--loader2/urlinstall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/loader2/urlinstall.c b/loader2/urlinstall.c
index b32f4e4a2..91cfa809a 100644
--- a/loader2/urlinstall.c
+++ b/loader2/urlinstall.c
@@ -122,7 +122,7 @@ static int loadUrlImages(struct iurlinfo * ui, int flags) {
/* require 128MB for use of graphical stage 2 due to size of image */
if (FL_TEXT(flags) || totalMemory() < GUI_STAGE2_RAM) {
stage2img = "netstg2.img";
- if (totalMemory() < 128000)
+ if (totalMemory() < GUI_STAGE2_RAM)
logMessage(WARNING, "URLINSTALL falling back to non-GUI stage2 "
"due to insufficient RAM");
} else {