Ignore:
Timestamp:
2018-12-03T21:18:26Z (5 years ago)
Author:
Matthieu Riolo <matthieu.riolo@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
25cfc3d
Parents:
a8c09f91
git-author:
Matthieu Riolo <matthieu.riolo@…> (2018-12-03 21:17:06)
git-committer:
Matthieu Riolo <matthieu.riolo@…> (2018-12-03 21:18:26)
Message:

correcting comments according to coding guideline

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/alias/alias.c

    ra8c09f91 r506cbf0  
    7070
    7171        if (alias_link != NULL) {
    72                 //update existing value
     72                /* update existing value */
    7373                alias_t *data = odict_get_instance(alias_link, alias_t, odict);
    7474                free(data->value);
    7575                data->value = str_dup(value);
    7676        } else {
    77                 //add new value
     77                /* add new value */
    7878                alias_t *data = (alias_t *)calloc(1, sizeof(alias_t));
    7979                data->name = str_dup(name);
Note: See TracChangeset for help on using the changeset viewer.