Changeset 890793b in mainline
- Timestamp:
- 2008-11-29T12:31:22Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- abd36f7
- Parents:
- 8df7a1c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/cmds/modules/cp/cp.c
r8df7a1c r890793b 83 83 if (-1 == (fd1 = open(src, O_RDONLY))) { 84 84 printf("Unable to open source file %s\n", src); 85 return copied;85 return -1; 86 86 } 87 87 … … 89 89 printf("Unable to open destination file %s\n", dest); 90 90 close(fd1); 91 return copied;91 return -1; 92 92 } 93 93
Note:
See TracChangeset
for help on using the changeset viewer.