commit 69854dc4359ae3ba16ddd65d51741bdf302d8cfb parent b4f1e487de8a91186b3a29ea7949473fb911c240 Author: Evgeny Grin (Karlson2k) <k2k@narod.ru> Date: Sun, 12 Dec 2021 14:14:48 +0300 mhd_send: fixed formatting style Diffstat:
| M | 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 @@ -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;