From 93a5a52a019e654b899ab3bc22a7bfdbac41990f Mon Sep 17 00:00:00 2001 From: "Evgeny Grin (Karlson2k)" Date: Mon, 1 Nov 2021 21:03:01 +0300 Subject: [PATCH] mhd_str: fixed code style --- 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 index 04b9da6d..31cc20b0 100644 --- 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; }