gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r35522 - gnunet/src/util


From: gnunet
Subject: [GNUnet-SVN] r35522 - gnunet/src/util
Date: Thu, 9 Apr 2015 20:25:08 +0200

Author: LRN
Date: 2015-04-09 20:25:08 +0200 (Thu, 09 Apr 2015)
New Revision: 35522

Modified:
   gnunet/src/util/network.c
Log:
Add missing const to the argument of the readiness checkers

Modified: gnunet/src/util/network.c
===================================================================
--- gnunet/src/util/network.c   2015-04-09 18:22:29 UTC (rev 35521)
+++ gnunet/src/util/network.c   2015-04-09 18:25:08 UTC (rev 35522)
@@ -1705,7 +1705,7 @@
  * @return #GNUNET_YES if the pipe is ready for reading
  */
 static int
-pipe_read_ready (struct GNUNET_DISK_FileHandle *fh)
+pipe_read_ready (const struct GNUNET_DISK_FileHandle *fh)
 {
   DWORD error;
   BOOL bret;
@@ -1737,7 +1737,7 @@
  * @return #GNUNET_YES if the pipe is having an IO exception.
  */
 static int
-pipe_except_ready (struct GNUNET_DISK_FileHandle *fh)
+pipe_except_ready (const struct GNUNET_DISK_FileHandle *fh)
 {
   DWORD dwBytes;
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]