Changeset 95c675b in mainline for kernel/generic/src/console/prompt.c
- Timestamp:
- 2017-10-17T13:11:35Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 60af4cdb
- Parents:
- dbf32b1 (diff), a416d070 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
kernel/generic/src/console/prompt.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/console/prompt.c
rdbf32b1 r95c675b 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.
