aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-02-28 15:17:18 +0000
committerChristian Grothoff <christian@grothoff.org>2012-02-28 15:17:18 +0000
commit83bb27bce557535f5c4738584ac05d2a7b797bbe (patch)
tree8036e97d50f5a4826bbddcea6b41caf8473ebeaa /src
parent1ae8140bb462989e0c56fa8848aa20026d54785b (diff)
downloadgnunet-83bb27bce557535f5c4738584ac05d2a7b797bbe.tar.gz
gnunet-83bb27bce557535f5c4738584ac05d2a7b797bbe.zip
-fix compiler warning
Diffstat (limited to 'src')
-rw-r--r--src/util/disk.c2
1 files changed, 1 insertions, 1 deletions
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])
2234#ifndef MINGW 2234#ifndef MINGW
2235 int ret; 2235 int ret;
2236 int flags; 2236 int flags;
2237 int eno; 2237 int eno = 0; /* make gcc happy */
2238 2238
2239 p->fd[0]->fd = fd[0]; 2239 p->fd[0]->fd = fd[0];
2240 p->fd[1]->fd = fd[1]; 2240 p->fd[1]->fd = fd[1];