Fix compilation warning: Initialize the variable

This commit is contained in:
Javier Jardón 2009-11-16 00:29:39 +01:00
parent c6243026ed
commit ba0a6e1911

View File

@ -77,7 +77,7 @@ static gpointer
reader_thread (gpointer user_data) reader_thread (gpointer user_data)
{ {
GInputStream *in; GInputStream *in;
gssize nread, total; gssize nread = 0, total;
GError *err = NULL; GError *err = NULL;
char buf[sizeof (DATA)]; char buf[sizeof (DATA)];