(trunk) #3045 "make libtransmission's API byte-oriented instead of KiB-oriented." -- fix r10931 merge error

This commit is contained in:
Charles Kerr
2010-07-03 00:33:30 +00:00
parent cdcc4705aa
commit 178dd336fe
2 changed files with 4 additions and 4 deletions

View File

@@ -249,9 +249,9 @@ main( int argc, char * argv[] )
tr_ctor * ctor;
tr_setMessageLevel( TR_MSG_ERR );
tr_formatter_mem_init ( MEM_K, MEM_B_STR, MEM_K_STR, MEM_G_STR );
tr_formatter_size_init ( DISK_K, DISK_B_STR, DIST_K_STR, DISK_G_STR );
tr_formatter_size_init ( SPEED_K, SPEED_B_STR, SPEED_K_STR, SPEED_G_STR );
tr_formatter_mem_init ( MEM_K, MEM_B_STR, MEM_K_STR, MEM_M_STR, MEM_G_STR );
tr_formatter_size_init ( DISK_K, DISK_B_STR, DISK_K_STR, DISK_M_STR, DISK_G_STR );
tr_formatter_size_init ( SPEED_K, SPEED_B_STR, SPEED_K_STR, SPEED_M_STR, SPEED_G_STR );
if( parseCommandLine( argc, (const char**)argv ) )
return EXIT_FAILURE;