commit 93a5a52a019e654b899ab3bc22a7bfdbac41990f parent 50b4782fe3eb9a5ba0f05c6bf0e78f3b19104f93 Author: Evgeny Grin (Karlson2k) <k2k@narod.ru> Date: Mon, 1 Nov 2021 21:03:01 +0300 mhd_str: fixed code style Diffstat:
| M | src/microhttpd/mhd_str.c | | | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/microhttpd/mhd_str.c b/src/microhttpd/mhd_str.c @@ -1178,9 +1178,9 @@ MHD_str_to_uvalue_n_ (const char *str, if (i) { if (8 == val_size) - *(uint64_t*) out_val = res; + *(uint64_t *) out_val = res; else if (4 == val_size) - *(uint32_t*) out_val = (uint32_t) res; + *(uint32_t *) out_val = (uint32_t) res; else return 0; }