style cleanup: assignment & indentation.

This commit is contained in:
2012-06-09 18:56:12 +00:00
parent c6cffe98fa
commit 2c1abe1f58
32 changed files with 500 additions and 484 deletions

View File

@@ -365,7 +365,7 @@ string MD5Hash::get_hex()
finish(digest);
for(int i=0; i<16; i++)
for(int i = 0; i < 16; i++)
sprintf(buf + i*2, "%02X", digest[i]);
buf[sizeof(buf)-1] = '\0';