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