Changeset 245 for trunk/cli


Ignore:
Timestamp:
Apr 26, 2006, 10:59:09 AM (17 years ago)
Author:
titer
Message:

Fixes warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/cli/transmissioncli.c

    r210 r245  
    128128                info->trackerAddress, info->trackerPort );
    129129        printf( "announce: %s\n", info->trackerAnnounce );
    130         printf( "size:     %lld (%lld * %d + %lld)\n",
     130        printf( "size:     %"PRIu64" (%"PRIu64" * %d + %"PRIu64")\n",
    131131                info->totalSize, info->totalSize / info->pieceSize,
    132132                info->pieceSize, info->totalSize % info->pieceSize );
     
    134134        for( i = 0; i < info->fileCount; i++ )
    135135        {
    136             printf( " %s (%lld)\n", info->files[i].name,
     136            printf( " %s (%"PRIu64")\n", info->files[i].name,
    137137                    info->files[i].length );
    138138        }
Note: See TracChangeset for help on using the changeset viewer.