in peer-msgs.c's my_funcs struct, remove an unnecessary trailing comma in the designated initializers.

This commit is contained in:
Jordan Lee 2013-07-08 16:44:19 +00:00
parent 058e430251
commit e0e4849abd
1 changed files with 1 additions and 1 deletions

View File

@ -2509,7 +2509,7 @@ peermsgs_destruct (tr_peer * peer)
static const struct tr_peer_virtual_funcs my_funcs =
{
.destruct = peermsgs_destruct,
.is_transferring_pieces = peermsgs_is_transferring_pieces,
.is_transferring_pieces = peermsgs_is_transferring_pieces
};
/***