diff options
author | Jeremy Katz <katzj@redhat.com> | 2005-03-29 22:00:33 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2005-03-29 22:00:33 +0000 |
commit | a33ae6d738cba6d044ccbbdc8087d1c600c469b0 (patch) | |
tree | 9e724623b464caa5e16c9d90f09b6b08c9db455f | |
parent | 48b46895a6f365efc9d2df90e07fa3b4bf055f52 (diff) | |
download | anaconda-a33ae6d738cba6d044ccbbdc8087d1c600c469b0.tar.gz anaconda-a33ae6d738cba6d044ccbbdc8087d1c600c469b0.tar.xz anaconda-a33ae6d738cba6d044ccbbdc8087d1c600c469b0.zip |
2005-03-29 Jeremy Katz <katzj@redhat.com>
* loader2/lang.c: Oops, remove debug printf
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | loader2/lang.c | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2005-03-29 Jeremy Katz <katzj@redhat.com> + * loader2/lang.c: Oops, remove debug printf + * anaconda.spec: Bump version. * scripts/buildinstall (PRODUCTPATH): Fix silly tree build problem diff --git a/loader2/lang.c b/loader2/lang.c index e6c342f12..6cb22284e 100644 --- a/loader2/lang.c +++ b/loader2/lang.c @@ -358,7 +358,6 @@ int chooseLanguage(char ** lang, int flags) { langs = alloca(sizeof(*langs) * (numLanguages + 1)); for (i = 0; i < numLanguages; i++) { - printf("foo\n"); if (!strncmp(languages[i].key, "en", 2)) english = numLangs; if (currentLangName && |