Replace UINT32_T by uint32_t

This commit is contained in:
Felipe Oliveira Carvalho
2014-03-12 19:53:34 -03:00
committed by Thiago de Arruda
parent 8b498d94d8
commit d38b6933e2
6 changed files with 33 additions and 50 deletions

View File

@@ -3652,7 +3652,7 @@ restore_backup:
*/
ptr = ml_get_buf(buf, lnum, FALSE) - 1;
if (write_undo_file)
sha256_update(&sha_ctx, ptr + 1, (UINT32_T)(STRLEN(ptr + 1) + 1));
sha256_update(&sha_ctx, ptr + 1, (uint32_t)(STRLEN(ptr + 1) + 1));
while ((c = *++ptr) != NUL) {
if (c == NL)
*s = NUL; /* replace newlines with NULs */