- Timestamp:
- Apr 26, 2006, 10:59:09 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/cli/transmissioncli.c
r210 r245 128 128 info->trackerAddress, info->trackerPort ); 129 129 printf( "announce: %s\n", info->trackerAnnounce ); 130 printf( "size: % lld (%lld * %d + %lld)\n",130 printf( "size: %"PRIu64" (%"PRIu64" * %d + %"PRIu64")\n", 131 131 info->totalSize, info->totalSize / info->pieceSize, 132 132 info->pieceSize, info->totalSize % info->pieceSize ); … … 134 134 for( i = 0; i < info->fileCount; i++ ) 135 135 { 136 printf( " %s (% lld)\n", info->files[i].name,136 printf( " %s (%"PRIu64")\n", info->files[i].name, 137 137 info->files[i].length ); 138 138 }
Note: See TracChangeset
for help on using the changeset viewer.