Changeset 12f5a1be in mainline


Ignore:
Timestamp:
2021-08-22T08:20:53Z (3 years ago)
Author:
Manuele Conti <manuele.conti@…>
Children:
b1e22f4
Parents:
b640738
Message:

Remove debug code and CStyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/input.c

    rb640738 r12f5a1be  
    287287                                to = fopen(redir_to, "w");
    288288                                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);
    292290                                        rc = errno;
    293291                                        goto finit_with_files;
     
    301299                                from = fopen(redir_from, "r");
    302300                                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);
    306302                                        rc = errno;
    307303                                        goto finit_with_files;
Note: See TracChangeset for help on using the changeset viewer.