[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[libmicrohttpd] 03/05: mhd_send: fixed formatting style
From: |
gnunet |
Subject: |
[libmicrohttpd] 03/05: mhd_send: fixed formatting style |
Date: |
Sun, 12 Dec 2021 14:13:08 +0100 |
This is an automated email from the git hooks/post-receive script.
karlson2k pushed a commit to branch master
in repository libmicrohttpd.
commit 69854dc4359ae3ba16ddd65d51741bdf302d8cfb
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Sun Dec 12 14:14:48 2021 +0300
mhd_send: fixed formatting style
---
src/microhttpd/mhd_send.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/microhttpd/mhd_send.c b/src/microhttpd/mhd_send.c
index b4a192a9..f0ebd38d 100644
--- a/src/microhttpd/mhd_send.c
+++ b/src/microhttpd/mhd_send.c
@@ -1524,7 +1524,7 @@ send_iov_nontls (struct MHD_Connection *connection,
mhd_assert (r_iov->cnt > r_iov->sent);
/* The last iov element has been partially sent */
r_iov->iov[r_iov->sent].iov_base =
- (void*) ((uint8_t*) r_iov->iov[r_iov->sent].iov_base + (size_t) res);
+ (void *) ((uint8_t *) r_iov->iov[r_iov->sent].iov_base + (size_t) res);
r_iov->iov[r_iov->sent].iov_len -= (MHD_iov_size_) res;
}
}
@@ -1592,7 +1592,7 @@ send_iov_emu (struct MHD_Connection *connection,
/* Incomplete buffer has been sent.
* Adjust buffer of the last element. */
r_iov->iov[r_iov->sent].iov_base =
- (void*) ((uint8_t*) r_iov->iov[r_iov->sent].iov_base + (size_t) res);
+ (void *) ((uint8_t *) r_iov->iov[r_iov->sent].iov_base + (size_t) res);
r_iov->iov[r_iov->sent].iov_len -= res;
return total_sent;
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.