diff options
author | Felipe Oliveira Carvalho <felipekde@gmail.com> | 2014-03-12 19:53:34 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-03-14 21:03:28 -0300 |
commit | d38b6933e2b7a156a1a800dc77e046104cfd57b0 (patch) | |
tree | a5e3d98f24a2c27ee267e3092a73a9dd9772b470 /src/undo.c | |
parent | 8b498d94d86518da3cdda2d2664843d3b7f403d2 (diff) | |
download | rneovim-d38b6933e2b7a156a1a800dc77e046104cfd57b0.tar.gz rneovim-d38b6933e2b7a156a1a800dc77e046104cfd57b0.tar.bz2 rneovim-d38b6933e2b7a156a1a800dc77e046104cfd57b0.zip |
Replace UINT32_T by uint32_t
Diffstat (limited to 'src/undo.c')
-rw-r--r-- | src/undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/undo.c b/src/undo.c index 62984b5c76..d1c3cc92ed 100644 --- a/src/undo.c +++ b/src/undo.c @@ -666,7 +666,7 @@ void u_compute_hash(char_u *hash) sha256_start(&ctx); for (lnum = 1; lnum <= curbuf->b_ml.ml_line_count; ++lnum) { p = ml_get(lnum); - sha256_update(&ctx, p, (UINT32_T)(STRLEN(p) + 1)); + sha256_update(&ctx, p, (uint32_t)(STRLEN(p) + 1)); } sha256_finish(&ctx, hash); } |