aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-04-23 20:52:04 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-04-25 16:05:13 +0300
commit2a01697de41f0219f4e9aa9425894c3d82804d90 (patch)
tree412d4c6d44dec3e3df8daf9d1d50461c3af29a56
parentc4c111d4d4a9da3b8197e1be365d58fc9bb1f1b7 (diff)
downloadlibmicrohttpd-2a01697de41f0219f4e9aa9425894c3d82804d90.tar.gz
libmicrohttpd-2a01697de41f0219f4e9aa9425894c3d82804d90.zip
sha256.c: fixed coding style
-rw-r--r--src/microhttpd/sha256.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/sha256.c b/src/microhttpd/sha256.c
index 6f6700dc..c81cfdcd 100644
--- a/src/microhttpd/sha256.c
+++ b/src/microhttpd/sha256.c
@@ -128,7 +128,7 @@ sha256_transform (uint32_t H[_SHA256_DIGEST_LENGTH],
128 /* The W[] buffer itself will be used as the source of the data, 128 /* The W[] buffer itself will be used as the source of the data,
129 * but data will be reloaded in correct bytes order during 129 * but data will be reloaded in correct bytes order during
130 * the next steps */ 130 * the next steps */
131 data = (uint8_t*) W; 131 data = (uint8_t *) W;
132 } 132 }
133#endif /* _MHD_GET_32BIT_BE_UNALIGNED */ 133#endif /* _MHD_GET_32BIT_BE_UNALIGNED */
134 134