Changes in kernel/generic/src/console/prompt.c [28a5ebd:174156fd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/prompt.c
r28a5ebd r174156fd 56 56 57 57 while (true) { 58 char32_t answer = indev_pop_character(indev);58 wchar_t answer = indev_pop_character(indev); 59 59 60 60 if ((answer == 'y') || (answer == 'Y')) { … … 87 87 printf("--More--"); 88 88 while (true) { 89 char32_t continue_showing_hints = indev_pop_character(indev);89 wchar_t continue_showing_hints = indev_pop_character(indev); 90 90 /* Display a full page again? */ 91 91 if ((continue_showing_hints == 'y') ||
Note:
See TracChangeset
for help on using the changeset viewer.