Changes in kernel/generic/src/console/prompt.c [dfc07c1:63e27ef] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/prompt.c
rdfc07c1 r63e27ef 37 37 */ 38 38 39 #include <assert.h> 39 40 #include <console/prompt.h> 40 41 … … 49 50 bool console_prompt_display_all_hints(indev_t *indev, size_t hints) 50 51 { 51 ASSERT(indev);52 ASSERT(hints > 0);52 assert(indev); 53 assert(hints > 0); 53 54 54 55 printf("Display all %zu possibilities? (y or n) ", hints); … … 81 82 bool console_prompt_more_hints(indev_t *indev, size_t *display_hints) 82 83 { 83 ASSERT(indev);84 ASSERT(display_hints != NULL);84 assert(indev); 85 assert(display_hints != NULL); 85 86 86 87 printf("--More--");
Note:
See TracChangeset
for help on using the changeset viewer.