Skip to content

Commit

Permalink
Squelch uninitialized warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
abh3 committed Jan 20, 2017
1 parent 9a0dfd9 commit 62eedf6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Xrd/XrdSendQ.cc
Expand Up @@ -311,7 +311,7 @@ int XrdSendQ::SendNB(const char *Buff, int Blen)
#if !defined(__linux__)
return -1;
#else
ssize_t retc, bytesleft = Blen;
ssize_t retc = 0, bytesleft = Blen;

// Write the data out
//
Expand Down

0 comments on commit 62eedf6

Please sign in to comment.