Ignore:
File:
1 edited

Legend:

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

    r19f857a r2815505  
    9595
    9696        if (vb)
    97                 printf("%d bytes to copy\n", total);
     97                printf("%" PRIu64 " bytes to copy\n", total);
    9898
    9999        lseek(fd1, 0, SEEK_SET);
     
    108108        for (;;) {
    109109                ssize_t res;
     110                size_t written = 0;
    110111
    111112                bytes = read(fd1, buff, blen);
     
    120121                         * returned less data than requested.
    121122                         */
    122                         bytes = write(fd2, buff, res);
     123                        bytes = write(fd2, buff + written, res);
    123124                        if (bytes < 0)
    124125                                goto err;
     126                        written += bytes;
    125127                        res -= bytes;
    126128                } while (res > 0);
     
    130132                 */
    131133                if (res != 0) {
    132                         printf("\n%d more bytes than actually exist were copied\n", res);
     134                        printf("\n%zd more bytes than actually exist were copied\n", res);
    133135                        goto err;
    134136                }
     
    187189                        return CMD_SUCCESS;
    188190                case 'v':
    189                         printf("%d\n", CP_VERSION);
     191                        printf("%s\n", CP_VERSION);
    190192                        return CMD_SUCCESS;
    191193                case 'V':
     
    223225
    224226        if (verbose)
    225                 printf("%d bytes copied\n", ret);
     227                printf("%" PRId64 " bytes copied\n", ret);
    226228
    227229        if (ret >= 0)
Note: See TracChangeset for help on using the changeset viewer.