Ignore:
Timestamp:
Dec 20, 2016, 4:07:32 PM (7 years ago)
Author:
Bruno Cornec
Message:

New 3?3 banch for incorporation of latest busybox 1.25. Changing minor version to handle potential incompatibilities.

Location:
branches/3.3
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi-busybox/util-linux/readprofile.c

    r3232 r3621  
    153153    step = buf[0];
    154154    if (optInfo) {
    155         printf("Sampling_step: %i\n", step);
     155        printf("Sampling_step: %u\n", step);
    156156        return EXIT_SUCCESS;
    157157    }
     
    220220        ) {
    221221            if (optVerbose)
    222                 printf("%016llx %-40s %6i %8.4f\n", fn_add,
     222                printf("%016llx %-40s %6u %8.4f\n", fn_add,
    223223                    fn_name, this, this/(double)fn_len);
    224224            else
    225                 printf("%6i %-40s %8.4f\n",
     225                printf("%6u %-40s %8.4f\n",
    226226                    this, fn_name, this/(double)fn_len);
    227227            if (optSub) {
     
    247247
    248248    /* clock ticks, out of kernel text - probably modules */
    249     printf("%6i %s\n", buf[len/sizeof(*buf)-1], "*unknown*");
     249    printf("%6u %s\n", buf[len/sizeof(*buf)-1], "*unknown*");
    250250
    251251    /* trailer */
    252252    if (optVerbose)
    253         printf("%016x %-40s %6i %8.4f\n",
     253        printf("%016x %-40s %6u %8.4f\n",
    254254            0, "total", total, total/(double)(fn_add-add0));
    255255    else
    256         printf("%6i %-40s %8.4f\n",
     256        printf("%6u %-40s %8.4f\n",
    257257            total, "total", total/(double)(fn_add-add0));
    258258
Note: See TracChangeset for help on using the changeset viewer.