diff options
author | Jeremy Katz <katzj@redhat.com> | 2008-02-07 18:00:08 -0500 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2008-02-07 18:00:34 -0500 |
commit | 4a018ab410f33c2b0a89de42bfd8b88aedb6eb27 (patch) | |
tree | bfe13a948ed286ced2c05bcf692563069539ee4d /loader2 | |
parent | 1c3df3b8a6e4d9adb5f5baa0b630696e9d69ab8a (diff) | |
download | anaconda-4a018ab410f33c2b0a89de42bfd8b88aedb6eb27.tar.gz anaconda-4a018ab410f33c2b0a89de42bfd8b88aedb6eb27.tar.xz anaconda-4a018ab410f33c2b0a89de42bfd8b88aedb6eb27.zip |
Fix error message on continuing after changing cds with mediacheck
Diffstat (limited to 'loader2')
-rw-r--r-- | loader2/cdinstall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loader2/cdinstall.c b/loader2/cdinstall.c index 2ea64f91a..02addff59 100644 --- a/loader2/cdinstall.c +++ b/loader2/cdinstall.c @@ -143,7 +143,7 @@ static void wrongCDMessage(void) { "in any of your drives. Please insert " "the %s disc and press %s to retry."), getProductName(), getProductName(), _("OK"))); - newtWinMessage(_("Error"), _("OK"), buf, _("OK")); + newtWinMessage(_("Error"), _("OK"), buf); free(buf); } |