aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/misc2.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2015-12-01 11:56:56 -0500
committerJustin M. Keyes <justinkz@gmail.com>2015-12-01 11:56:56 -0500
commitf4656498a818793256b99721dadbed6ebde65793 (patch)
tree3e56ec47640cfe6541012a78908e2982ab18b66f /src/nvim/misc2.c
parent826f474ef06e8a406fa398e7ee461457f26a0e8e (diff)
parent1968f4898a29c686e36c70505d485e63f9862f2c (diff)
downloadrneovim-f4656498a818793256b99721dadbed6ebde65793.tar.gz
rneovim-f4656498a818793256b99721dadbed6ebde65793.tar.bz2
rneovim-f4656498a818793256b99721dadbed6ebde65793.zip
Merge pull request #3762 from Shougo/vim-7.4.649
vim-patch:7.4.649
Diffstat (limited to 'src/nvim/misc2.c')
-rw-r--r--src/nvim/misc2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/misc2.c b/src/nvim/misc2.c
index c615e0689f..3c0a1414a6 100644
--- a/src/nvim/misc2.c
+++ b/src/nvim/misc2.c
@@ -470,7 +470,7 @@ void put_time(FILE *fd, time_t time_)
{
uint8_t buf[8];
time_to_bytes(time_, buf);
- fwrite(buf, sizeof(uint8_t), ARRAY_SIZE(buf), fd);
+ (void)fwrite(buf, sizeof(uint8_t), ARRAY_SIZE(buf), fd);
}
/// Writes time_t to "buf[8]".