Changeset a8c09f91 in mainline
- Timestamp:
- 2018-11-30T20:55:16Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 506cbf0
- Parents:
- 966f753
- Location:
- uspace/app/bdsh/cmds/modules
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/alias/alias.c
r966f753 ra8c09f91 60 60 return true; 61 61 } 62 63 printf("%s: No alias with the name '%s' exists\n", cmdname, name);62 63 cli_error(CL_ENOENT, "%s: No alias with the name '%s' exists\n", cmdname, name); 64 64 return false; 65 65 } -
uspace/app/bdsh/cmds/modules/unalias/unalias.c
r966f753 ra8c09f91 85 85 86 86 if (alias_link == NULL) { 87 printf("%s: No alias '%s' found\n", cmdname, argv[i]);87 cli_error(CL_ENOENT, "%s: No alias '%s' found\n", cmdname, argv[i]); 88 88 return CMD_FAILURE; 89 89 }
Note:
See TracChangeset
for help on using the changeset viewer.