Changes in / [f90eb75:8a6ba94] in mainline


Ignore:
Location:
uspace
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/Makefile

    rf90eb75 r8a6ba94  
    3131LIBS = $(LIBBLOCK_PREFIX)/libblock.a $(LIBCLUI_PREFIX)/libclui.a \
    3232        $(LIBFMTUTIL_PREFIX)/libfmtutil.a
    33 EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I$(LIBCLUI_PREFIX) \
    34         -I$(LIBFMTUTIL_PREFIX) -I. -Icmds/ -Icmds/builtins -Icmds/modules
     33EXTRA_CFLAGS = -I$(LIBBLOCK_PREFIX) -I$(LIBCLUI_PREFIX) -I$(LIBFMTUTIL_PREFIX)\
     34        -I. -Icmds/ -Icmds/builtins -Icmds/modules
    3535BINARY = bdsh
    3636
  • uspace/app/bdsh/cmds/modules/help/help.c

    rf90eb75 r8a6ba94  
    152152            "This is but a small glimpse of what you can do with HelenOS. "
    153153            "To learn more please point your browser to the HelenOS User's "
    154             "Guide: http://trac.helenos.org/wiki/UsersGuide\n\n",
     154            "Guide: http://trac.helenos.org/trac.fcgi/wiki/UsersGuide\n\n",
    155155            ALIGN_LEFT);
    156156}
  • uspace/app/bdsh/input.c

    rf90eb75 r8a6ba94  
    6767int process_input(cliuser_t *usr)
    6868{
     69        char *cmd[WORD_MAX];
    6970        token_t *tokens = calloc(WORD_MAX, sizeof(token_t));
    7071        if (tokens == NULL)
    7172                return ENOMEM;
    72        
    73         char *cmd[WORD_MAX];
    7473        int rc = 0;
    7574        tokenizer_t tok;
     
    7978        char *redir_to = NULL;
    8079
    81         if (usr->line == NULL) {
     80        if (NULL == usr->line) {
    8281                free(tokens);
    8382                return CL_EFAIL;
  • uspace/lib/c/generic/str.c

    rf90eb75 r8a6ba94  
    731731{
    732732        size_t len = str_length(str);
    733        
    734         wchar_t *wstr = calloc(len+1, sizeof(wchar_t));
    735         if (wstr == NULL)
    736                 return NULL;
    737        
    738         str_to_wstr(wstr, len + 1, str);
     733        wchar_t *wstr = calloc(len+1, sizeof(wchar_t));
     734        if (wstr == NULL) {
     735                return NULL;
     736        }
     737        str_to_wstr(wstr, len+1, str);
    739738        return wstr;
    740739}
Note: See TracChangeset for help on using the changeset viewer.