From d74c05b73cc98e9ce66e57d86ae03c023d2b3c53 Mon Sep 17 00:00:00 2001 From: Vitaly Chikunov Date: Wed, 1 Dec 2021 06:07:08 +0300 Subject: [PATCH 1/1] Add .editorconfig Noticed that there is some misindentation (also fix it). --- .editorconfig | 21 +++++++++++++++++++++ gosthash2012.c | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..22d449b --- /dev/null +++ b/.editorconfig @@ -0,0 +1,21 @@ +# https://editorconfig.org + +root = true + +[*] +end_of_line = lf +insert_final_newline = true +tab_width = 8 + +[*.[ch]] +indent_size = 4 +indent_style = space + +[{CMakeLists.txt,*.cmake}] +indent_size = 2 +indent_style = space + +[COMMIT_EDITMSG] +indent_size = 2 +indent_style = space +max_line_length = 80 diff --git a/gosthash2012.c b/gosthash2012.c index f634bb7..91c2c94 100644 --- a/gosthash2012.c +++ b/gosthash2012.c @@ -69,7 +69,7 @@ static INLINE void add512(union uint512_u * RESTRICT x, # ifdef HAVE_ADDCARRY_U64 for (i = 0; i < 8; i++) - CF = _addcarry_u64(CF, x->QWORD[i] , y->QWORD[i], &(x->QWORD[i])); + CF = _addcarry_u64(CF, x->QWORD[i] , y->QWORD[i], &(x->QWORD[i])); # else for (i = 0; i < 8; i++) { const unsigned long long left = x->QWORD[i]; -- 2.39.2