aboutsummaryrefslogtreecommitdiff
path: root/src/fileio.c
diff options
context:
space:
mode:
authorFelipe Oliveira Carvalho <felipekde@gmail.com>2014-03-12 19:53:34 -0300
committerThiago de Arruda <tpadilha84@gmail.com>2014-03-14 21:03:28 -0300
commitd38b6933e2b7a156a1a800dc77e046104cfd57b0 (patch)
treea5e3d98f24a2c27ee267e3092a73a9dd9772b470 /src/fileio.c
parent8b498d94d86518da3cdda2d2664843d3b7f403d2 (diff)
downloadrneovim-d38b6933e2b7a156a1a800dc77e046104cfd57b0.tar.gz
rneovim-d38b6933e2b7a156a1a800dc77e046104cfd57b0.tar.bz2
rneovim-d38b6933e2b7a156a1a800dc77e046104cfd57b0.zip
Replace UINT32_T by uint32_t
Diffstat (limited to 'src/fileio.c')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 5062924d2d..83efddfd28 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -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 */