gnunet-svn
[Top][All Lists]
Advanced

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

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


From: gnunet
Subject: [GNUnet-SVN] r34981 - gnunet/src/util
Date: Sun, 25 Jan 2015 00:09:01 +0100

Author: LRN
Date: 2015-01-25 00:09:01 +0100 (Sun, 25 Jan 2015)
New Revision: 34981

Modified:
   gnunet/src/util/network.c
Log:
W32: Remove copy-pasted stray increment

Modified: gnunet/src/util/network.c
===================================================================
--- gnunet/src/util/network.c   2015-01-24 23:08:58 UTC (rev 34980)
+++ gnunet/src/util/network.c   2015-01-24 23:09:01 UTC (rev 34981)
@@ -1286,7 +1286,7 @@
     GNUNET_array_grow (fds->handles,
                        fds->handles_size,
                        fds->handles_size * 2 + 2);
-  fds->handles[fds->handles_pos++] = h;
+  fds->handles[fds->handles_pos] = h;
   if (fds->handles[0] != h)
   {
     const struct GNUNET_DISK_FileHandle *bak = fds->handles[0];




reply via email to

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