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; }