gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libmicrohttpd] 20/154: mhd_send.c: variable declarations (


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] 20/154: mhd_send.c: variable declarations (style).
Date: Mon, 19 Aug 2019 10:15:32 +0200

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

ng0 pushed a commit to branch master
in repository libmicrohttpd.

commit 2a08acaa218a1e887f60af3019db33f9ec68cbe2
Author: ng0 <address@hidden>
AuthorDate: Tue Jul 16 19:01:44 2019 +0000

    mhd_send.c: variable declarations (style).
---
 src/microhttpd/mhd_send.c | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)

diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index de228676..c6218870 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -78,10 +78,14 @@ MHD_send_on_connection_ (struct MHD_Connection *connection,
   //size_t length, opt1, opt2;
   // ssize_t num_bytes;
   //int errno = 0;
-  bool want_cork, have_cork, have_more;
+  bool want_cork;
+  bool have_cork;
+  bool have_more;
   /* The socket. */
   MHD_socket s = connection->socket_fd;
-  int eno, ret, optval;
+  int eno;
+  int ret;
+  int optval;
   const MHD_SCKT_OPT_BOOL_ off_val = 0;
   const MHD_SCKT_OPT_BOOL_ on_val = 1;
   const int err = MHD_socket_get_error_ ();
@@ -311,8 +315,10 @@ MHD_send_on_connection2_ (struct MHD_Connection 
*connection,
 {
 #if HAVE_WRITEV
   MHD_socket s = connection->socket_fd;
-  bool have_cork, have_more;
-  int iovcnt, eno;
+  bool have_cork;
+  bool have_more;
+  int iovcnt;
+  int eno;
   const MHD_SCKT_OPT_BOOL_ off_val = 0;
   struct iovec vector[2];
 

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



reply via email to

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