Changes in uspace/app/sbi/src/input.c [9be9c4d:c5cb943d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/sbi/src/input.c
r9be9c4d rc5cb943d 176 176 int input_get_line(input_t *input, char **line) 177 177 { 178 const char *prompt;179 178 const char *sp; 180 179 char *dp; … … 213 212 /* Interactive mode */ 214 213 if (input->line_no == 0) 215 pr ompt = "sbi> ";214 printf("sbi> "); 216 215 else 217 pr ompt = "... ";216 printf("... "); 218 217 219 218 fflush(stdout); 220 if (os_input_line( prompt,&line_p) != EOK)219 if (os_input_line(&line_p) != EOK) 221 220 return EIO; 222 221
Note:
See TracChangeset
for help on using the changeset viewer.