summaryrefslogtreecommitdiffstats
path: root/loader2
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2002-12-17 16:01:10 +0000
committerMatt Wilson <msw@redhat.com>2002-12-17 16:01:10 +0000
commite14c5e2863654d0a6e74fefd027638a6ce165248 (patch)
tree5c93d058f03101519b294b5bca161bf7ab06c6d6 /loader2
parentf40bea21826bee9bf50338f820ce45eec46fb989 (diff)
downloadanaconda-e14c5e2863654d0a6e74fefd027638a6ce165248.tar.gz
anaconda-e14c5e2863654d0a6e74fefd027638a6ce165248.tar.xz
anaconda-e14c5e2863654d0a6e74fefd027638a6ce165248.zip
escape %
Diffstat (limited to 'loader2')
-rw-r--r--loader2/loader.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader2/loader.c b/loader2/loader.c
index 0e8316acb..ade1504fa 100644
--- a/loader2/loader.c
+++ b/loader2/loader.c
@@ -186,7 +186,7 @@ void initializeConsole(moduleList modLoaded, moduleDeps modDeps,
moduleInfoSet modInfo, int flags) {
mlLoadModuleSet("vga16fb", modLoaded, modDeps, modInfo, flags);
/* enable UTF-8 console */
- printf("\033%G");
+ printf("\033%%G");
fflush(stdout);
isysLoadFont();
}
@@ -218,7 +218,7 @@ static void spawnShell(int flags) {
setsid();
/* enable UTF-8 console */
- printf("\033%G");
+ printf("\033%%G");
fflush(stdout);
isysLoadFont();