Skip to content
Snippets Groups Projects
Commit b7c8216c authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix typo in example code in comment causing uncrustify 0.80 to assert

do_source_file: Parsing: sha1.c as language C
parse_cleanup(479): pc orig line is 257, orig col is 33, Text() is '}', type is BRACE_CLOSE
parse_cleanup(485): (frm.top().type + 1) is VBRACE_CLOSE
parse_cleanup(492): File: sha1.c, orig line is 257, orig col is 33, Error: Unexpected '}' for 'VBRACE_OPEN', which was on line 256
parent f007ae23
No related branches found
No related tags found
No related merge requests found
......@@ -254,7 +254,8 @@ void SHA1Final(
int j;
for (j = 0; j < 4; t >>= 8, j++)
*--fcp = (uint8_t) t}
*--fcp = (uint8_t) t;
}
#else
for (i = 0; i < 8; i++)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment