Changeset b0889d05 in mainline
- Timestamp:
- 2011-06-17T16:14:08Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 98caf49
- Parents:
- e99564d
- Location:
- uspace/app/bdsh/cmds
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/builtin_cmds.c
re99564d rb0889d05 96 96 cmd->help(extended); 97 97 return CL_EOK; 98 } else 98 } else { 99 99 return CL_ENOENT; 100 } 100 101 } 101 102 … … 112 113 if (NULL != cmd->entry) { 113 114 rc = ((int)cmd->entry(argv, usr)); 114 } 115 else { 115 } else { 116 116 rc = CL_ENOENT; 117 117 } -
uspace/app/bdsh/cmds/mod_cmds.c
re99564d rb0889d05 116 116 mod->help(extended); 117 117 return CL_EOK; 118 } else 118 } else { 119 119 return CL_ENOENT; 120 } 120 121 } 121 122 … … 134 135 if (NULL != mod->entry) { 135 136 rc = ((int)mod->entry(argv)); 136 } 137 else { 137 } else { 138 138 rc = CL_ENOENT; 139 139 }
Note:
See TracChangeset
for help on using the changeset viewer.