mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 09:18:19 +00:00
Replace UINT32_T by uint32_t
This commit is contained in:

committed by
Thiago de Arruda

parent
8b498d94d8
commit
d38b6933e2
@@ -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 */
|
||||
|
Reference in New Issue
Block a user