forked from mirror/OpenTTD
(svn r3181) -Bracing
-Indentation -Whitespace -DeMorgan's Law -Test with NULL or 0 for non-booleans -'\0' instead of 0 for chars -Remove redundantly redundant comments (like DoFoo(); // Do foo) -Join multiple short lines with a single statement -Split single lines with multiple statements -Avoid assignments in if
This commit is contained in:
@@ -1257,7 +1257,7 @@ static void NetworkGenerateUniqueId(void)
|
||||
|
||||
/* Generate the MD5 hash */
|
||||
md5_init(&state);
|
||||
md5_append(&state, coding_string, strlen(coding_string));
|
||||
md5_append(&state, (const md5_byte_t*)coding_string, strlen(coding_string));
|
||||
md5_finish(&state, digest);
|
||||
|
||||
for (di = 0; di < 16; ++di)
|
||||
|
Reference in New Issue
Block a user