diff options
Diffstat (limited to 'src/nvim/sha256.h')
-rw-r--r-- | src/nvim/sha256.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/sha256.h b/src/nvim/sha256.h index a1d8f670d5..eeb4031509 100644 --- a/src/nvim/sha256.h +++ b/src/nvim/sha256.h @@ -12,7 +12,7 @@ typedef struct { uint32_t total[2]; uint32_t state[8]; - char_u buffer[SHA256_BUFFER_SIZE]; + uint8_t buffer[SHA256_BUFFER_SIZE]; } context_sha256_T; #ifdef INCLUDE_GENERATED_DECLARATIONS |