diff options
author | Matt Wilson <msw@redhat.com> | 2002-12-17 15:50:14 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2002-12-17 15:50:14 +0000 |
commit | 3f06ce08dd9874bef1cacb00c9f260362ec20d97 (patch) | |
tree | f29868a4c802ebf8ed6342652b4a60d9a8218de7 /loader2/loader.c | |
parent | 8209886237526f57c90038f72c7e3e35f543a2dd (diff) | |
download | anaconda-3f06ce08dd9874bef1cacb00c9f260362ec20d97.tar.gz anaconda-3f06ce08dd9874bef1cacb00c9f260362ec20d97.tar.xz anaconda-3f06ce08dd9874bef1cacb00c9f260362ec20d97.zip |
flush stdout
Diffstat (limited to 'loader2/loader.c')
-rw-r--r-- | loader2/loader.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/loader2/loader.c b/loader2/loader.c index e213013d1..0e8316acb 100644 --- a/loader2/loader.c +++ b/loader2/loader.c @@ -187,6 +187,7 @@ void initializeConsole(moduleList modLoaded, moduleDeps modDeps, mlLoadModuleSet("vga16fb", modLoaded, modDeps, modInfo, flags); /* enable UTF-8 console */ printf("\033%G"); + fflush(stdout); isysLoadFont(); } @@ -218,6 +219,7 @@ static void spawnShell(int flags) { /* enable UTF-8 console */ printf("\033%G"); + fflush(stdout); isysLoadFont(); if (ioctl(0, TIOCSCTTY, NULL)) { |