Changeset 12f5a1be in mainline
- Timestamp:
- 2021-08-22T08:20:53Z (3 years ago)
- Children:
- 9bfb74a
- Parents:
- b640738
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/bdsh/input.c
rb640738 r12f5a1be 287 287 to = fopen(redir_to, "w"); 288 288 if (to == NULL) { 289 printf( 290 "Cannot open file %s redirect to\n", 291 redir_to); 289 printf("Cannot open file %s\n", redir_to); 292 290 rc = errno; 293 291 goto finit_with_files; … … 301 299 from = fopen(redir_from, "r"); 302 300 if (from == NULL) { 303 printf("Cannot open file %s redirect " 304 "from\n", 305 redir_from); 301 printf("Cannot open file %s\n", redir_from); 306 302 rc = errno; 307 303 goto finit_with_files;
Note:
See TracChangeset
for help on using the changeset viewer.