1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 01:27:28 +00:00

(trunk gtk) msgwin.c: silence compiler warning "warning: ‘pinned_to_new’ may be used uninitialized in this function"

This commit is contained in:
Jordan Lee 2011-02-09 05:10:29 +00:00
parent 1d1a3e8068
commit 62b732708a

View file

@ -58,7 +58,7 @@ static struct tr_msg_list * myHead = NULL;
static gboolean
is_pinned_to_new( struct MsgData * data )
{
gboolean pinned_to_new;
gboolean pinned_to_new = FALSE;
if( data->view == NULL )
{