gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libmicrohttpd] branch master updated: avoid c99 construct,


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] branch master updated: avoid c99 construct, we do not yet require c99 elsewhere
Date: Tue, 31 Jan 2017 13:28:07 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository libmicrohttpd.

The following commit(s) were added to refs/heads/master by this push:
     new b9846840 avoid c99 construct, we do not yet require c99 elsewhere
b9846840 is described below

commit b98468404c7c2a3adc5a591a9472fdd957a01341
Author: Christian Grothoff <address@hidden>
AuthorDate: Tue Jan 31 13:28:01 2017 +0100

    avoid c99 construct, we do not yet require c99 elsewhere
---
 src/examples/upgrade_example.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/examples/upgrade_example.c b/src/examples/upgrade_example.c
index f77f58fc..7a893d2f 100644
--- a/src/examples/upgrade_example.c
+++ b/src/examples/upgrade_example.c
@@ -68,9 +68,10 @@ send_all (MHD_socket sock,
           size_t len)
 {
   ssize_t ret;
+  size_t off;
 
   make_blocking (sock);
-  for (size_t off = 0; off < len; off += ret)
+  for (off = 0; off < len; off += ret)
     {
       ret = send (sock,
                   &buf[off],

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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