aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorLRN <lrn1986@gmail.com>2015-04-09 18:25:08 +0000
committerLRN <lrn1986@gmail.com>2015-04-09 18:25:08 +0000
commit26e9a0dfa03fa4430859e009a6b977ec686cb8e6 (patch)
tree41a590d48976d15b8ee33a29527a412d7e5bafdb /src/util
parentd19cf93d1d02b81de46d7d90920978de6e4edab2 (diff)
downloadgnunet-26e9a0dfa03fa4430859e009a6b977ec686cb8e6.tar.gz
gnunet-26e9a0dfa03fa4430859e009a6b977ec686cb8e6.zip
Add missing const to the argument of the readiness checkers
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