Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/sbi/src/input.c

    r9be9c4d rc5cb943d  
    176176int input_get_line(input_t *input, char **line)
    177177{
    178         const char *prompt;
    179178        const char *sp;
    180179        char *dp;
     
    213212                /* Interactive mode */
    214213                if (input->line_no == 0)
    215                         prompt = "sbi> ";
     214                        printf("sbi> ");
    216215                else
    217                         prompt = "...  ";
     216                        printf("...  ");
    218217
    219218                fflush(stdout);
    220                 if (os_input_line(prompt, &line_p) != EOK)
     219                if (os_input_line(&line_p) != EOK)
    221220                        return EIO;
    222221
Note: See TracChangeset for help on using the changeset viewer.