From 756934392ac01609d8bc90f4a8702294acf1bbbc Mon Sep 17 00:00:00 2001 From: okuji Date: Fri, 24 Jan 2003 16:21:35 +0000 Subject: [PATCH] 2003-01-25 Yoshinori K. Okuji From Karsten Scheibler : * stage2/terminfo.c (term): Don't use a C99-style initializer. --- ChangeLog | 5 +++++ THANKS | 1 + stage2/terminfo.c | 10 +++++----- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 56a19cdf5..4b1803314 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2003-01-25 Yoshinori K. Okuji + + From Karsten Scheibler : + * stage2/terminfo.c (term): Don't use a C99-style initializer. + 2003-01-16 Yoshinori K. Okuji From H.J. Lu : diff --git a/THANKS b/THANKS index d60e5b924..9bc14a033 100644 --- a/THANKS +++ b/THANKS @@ -60,6 +60,7 @@ Josip Rodin Julien Bordet Julien Perrot Kalle Olavi Niemitalo +Karsten Scheibler Khimenko Victor Klaus Reichl Kristoffer Branemyr diff --git a/stage2/terminfo.c b/stage2/terminfo.c index 79088c9a4..438d53eff 100644 --- a/stage2/terminfo.c +++ b/stage2/terminfo.c @@ -33,11 +33,11 @@ /* Current terminal capabilities. Default is "vt100". */ struct terminfo term = { - .name "vt100", - .cursor_address "\e[%i%p1%d;%p2%dH", - .clear_screen "\e[H\e[J", - .enter_standout_mode "\e[7m", - .exit_standout_mode "\e[m" + .name = "vt100", + .cursor_address = "\e[%i%p1%d;%p2%dH", + .clear_screen = "\e[H\e[J", + .enter_standout_mode = "\e[7m", + .exit_standout_mode = "\e[m" }; /* A number of escape sequences are provided in the string valued