1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-25 01:03:01 +00:00

add missing )

This commit is contained in:
Mitchell Livingston 2007-04-06 01:52:16 +00:00
parent 623a7b061d
commit 96e9685c6a

View file

@ -335,7 +335,7 @@ char * tr_clientForId( uint8_t * id )
} }
else else
{ {
asprintf( &ret, "unknown client (0x%02x%02x%02x%02x%02x%02x%02x%02x", asprintf( &ret, "unknown client (0x%02x%02x%02x%02x%02x%02x%02x%02x)",
id[0], id[1], id[2], id[3], id[4], id[5], id[6], id[7] ); id[0], id[1], id[2], id[3], id[4], id[5], id[6], id[7] );
} }
} }