From: Christian Grothoff Date: Tue, 28 Feb 2012 15:17:18 +0000 (+0000) Subject: -fix compiler warning X-Git-Tag: initial-import-from-subversion-38251~14570 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=83bb27bce557535f5c4738584ac05d2a7b797bbe;p=oweals%2Fgnunet.git -fix compiler warning --- diff --git a/src/util/disk.c b/src/util/disk.c index d0dbbdf66..b6b458f15 100644 --- a/src/util/disk.c +++ b/src/util/disk.c @@ -2234,7 +2234,7 @@ GNUNET_DISK_pipe_from_fd (int blocking_read, int blocking_write, int fd[2]) #ifndef MINGW int ret; int flags; - int eno; + int eno = 0; /* make gcc happy */ p->fd[0]->fd = fd[0]; p->fd[1]->fd = fd[1];