Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/bdsh/cmds/modules/cp/cp.c

    r2815505 r19f857a  
    9595
    9696        if (vb)
    97                 printf("%" PRIu64 " bytes to copy\n", total);
     97                printf("%d bytes to copy\n", total);
    9898
    9999        lseek(fd1, 0, SEEK_SET);
     
    108108        for (;;) {
    109109                ssize_t res;
    110                 size_t written = 0;
    111110
    112111                bytes = read(fd1, buff, blen);
     
    121120                         * returned less data than requested.
    122121                         */
    123                         bytes = write(fd2, buff + written, res);
     122                        bytes = write(fd2, buff, res);
    124123                        if (bytes < 0)
    125124                                goto err;
    126                         written += bytes;
    127125                        res -= bytes;
    128126                } while (res > 0);
     
    132130                 */
    133131                if (res != 0) {
    134                         printf("\n%zd more bytes than actually exist were copied\n", res);
     132                        printf("\n%d more bytes than actually exist were copied\n", res);
    135133                        goto err;
    136134                }
     
    189187                        return CMD_SUCCESS;
    190188                case 'v':
    191                         printf("%s\n", CP_VERSION);
     189                        printf("%d\n", CP_VERSION);
    192190                        return CMD_SUCCESS;
    193191                case 'V':
     
    225223
    226224        if (verbose)
    227                 printf("%" PRId64 " bytes copied\n", ret);
     225                printf("%d bytes copied\n", ret);
    228226
    229227        if (ret >= 0)
Note: See TracChangeset for help on using the changeset viewer.