aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-04-23 20:52:56 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-04-25 16:05:14 +0300
commit851b406174e3ac796f702a9764c139d87d305659 (patch)
tree66ce7180aff3052187bdf9fce82f60f9ba4245bb
parent5da78f9d8d8018cd38db22dd1034f708597e4cf1 (diff)
downloadlibmicrohttpd-851b406174e3ac796f702a9764c139d87d305659.tar.gz
libmicrohttpd-851b406174e3ac796f702a9764c139d87d305659.zip
sha1.c: fixed coding style
-rw-r--r--src/microhttpd/sha1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/sha1.c b/src/microhttpd/sha1.c
index 9888cbfe..1e9da5c7 100644
--- a/src/microhttpd/sha1.c
+++ b/src/microhttpd/sha1.c
@@ -116,7 +116,7 @@ sha1_transform (uint32_t H[_SHA1_DIGEST_LENGTH],
116 /* The W[] buffer itself will be used as the source of the data, 116 /* The W[] buffer itself will be used as the source of the data,
117 * but data will be reloaded in correct bytes order during 117 * but data will be reloaded in correct bytes order during
118 * the next steps */ 118 * the next steps */
119 data = (uint8_t*) W; 119 data = (uint8_t *) W;
120 } 120 }
121#endif /* _MHD_GET_32BIT_BE_UNALIGNED */ 121#endif /* _MHD_GET_32BIT_BE_UNALIGNED */
122 122