diff options
author | Michael Brown | 2011-03-07 20:33:50 +0100 |
---|---|---|
committer | Michael Brown | 2011-03-07 20:37:30 +0100 |
commit | 9d633bdc7113f0050a0b35df5245dee2b819a273 (patch) | |
tree | 637c56a790d95598026387b05ed086dbc606470c /src/hci/tui | |
parent | [console] Avoid timer wraparound problems in getchar_timeout() (diff) | |
download | ipxe-9d633bdc7113f0050a0b35df5245dee2b819a273.tar.gz ipxe-9d633bdc7113f0050a0b35df5245dee2b819a273.tar.xz ipxe-9d633bdc7113f0050a0b35df5245dee2b819a273.zip |
[console] Add a timeout parameter to getkey()
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/hci/tui')
-rw-r--r-- | src/hci/tui/login_ui.c | 2 | ||||
-rw-r--r-- | src/hci/tui/settings_ui.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/hci/tui/login_ui.c b/src/hci/tui/login_ui.c index bcfd09cb..954bde50 100644 --- a/src/hci/tui/login_ui.c +++ b/src/hci/tui/login_ui.c @@ -88,7 +88,7 @@ int login_ui ( void ) { draw_editbox ( current_box ); - key = getkey(); + key = getkey ( 0 ); switch ( key ) { case KEY_DOWN: current_box = &password_box; diff --git a/src/hci/tui/settings_ui.c b/src/hci/tui/settings_ui.c index b8fe207f..176fbd3e 100644 --- a/src/hci/tui/settings_ui.c +++ b/src/hci/tui/settings_ui.c @@ -401,7 +401,7 @@ static int main_loop ( struct settings *settings ) { draw_setting ( &widget ); color_set ( CPAIR_NORMAL, NULL ); - key = getkey(); + key = getkey ( 0 ); if ( widget.editing ) { key = edit_setting ( &widget, key ); switch ( key ) { |