aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/network.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/network.c b/src/util/network.c
index 8b30f2d47..b695552dd 100644
--- a/src/util/network.c
+++ b/src/util/network.c
@@ -1705,7 +1705,7 @@ GNUNET_NETWORK_socket_select (struct GNUNET_NETWORK_FDSet *rfds,
1705 * @return #GNUNET_YES if the pipe is ready for reading 1705 * @return #GNUNET_YES if the pipe is ready for reading
1706 */ 1706 */
1707static int 1707static int
1708pipe_read_ready (struct GNUNET_DISK_FileHandle *fh) 1708pipe_read_ready (const struct GNUNET_DISK_FileHandle *fh)
1709{ 1709{
1710 DWORD error; 1710 DWORD error;
1711 BOOL bret; 1711 BOOL bret;
@@ -1737,7 +1737,7 @@ pipe_read_ready (struct GNUNET_DISK_FileHandle *fh)
1737 * @return #GNUNET_YES if the pipe is having an IO exception. 1737 * @return #GNUNET_YES if the pipe is having an IO exception.
1738 */ 1738 */
1739static int 1739static int
1740pipe_except_ready (struct GNUNET_DISK_FileHandle *fh) 1740pipe_except_ready (const struct GNUNET_DISK_FileHandle *fh)
1741{ 1741{
1742 DWORD dwBytes; 1742 DWORD dwBytes;
1743 1743