Changeset b0889d05 in mainline


Ignore:
Timestamp:
2011-06-17T16:14:08Z (13 years ago)
Author:
Jiri Svoboda <jiri@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
98caf49
Parents:
e99564d
Message:

Cstyle nits.

Location:
uspace/app/bdsh/cmds
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/builtin_cmds.c

    re99564d rb0889d05  
    9696                cmd->help(extended);
    9797                return CL_EOK;
    98         } else
     98        } else {
    9999                return CL_ENOENT;
     100        }
    100101}
    101102
     
    112113        if (NULL != cmd->entry) {
    113114                rc = ((int)cmd->entry(argv, usr));
    114         }
    115         else {
     115        } else {
    116116                rc = CL_ENOENT;
    117117        }
  • uspace/app/bdsh/cmds/mod_cmds.c

    re99564d rb0889d05  
    116116                mod->help(extended);
    117117                return CL_EOK;
    118         } else
     118        } else {
    119119                return CL_ENOENT;
     120        }
    120121}
    121122
     
    134135        if (NULL != mod->entry) {
    135136                rc = ((int)mod->entry(argv));
    136         }
    137         else {
     137        } else {
    138138                rc = CL_ENOENT;
    139139        }
Note: See TracChangeset for help on using the changeset viewer.