aboutsummaryrefslogtreecommitdiff
path: root/src
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
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')
-rw-r--r--src/nvim/misc2.c2
-rw-r--r--src/nvim/version.c2
2 files changed, 2 insertions, 2 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]".
diff --git a/src/nvim/version.c b/src/nvim/version.c
index c9a779b5c8..83a47c207d 100644
--- a/src/nvim/version.c
+++ b/src/nvim/version.c
@@ -347,7 +347,7 @@ static int included_patches[] = {
// 652 NA
651,
// 650 NA
- // 649,
+ 649,
// 648 NA
// 647 NA
646,