summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-03-05 13:36:00 +0100
committerBram Moolenaar <Bram@vim.org>2015-03-05 13:36:00 +0100
commitcf48767cd17130958a3076eed1872b6950947a0a (patch)
tree3d00f129961e7193884854fb49b6a3ea6a0a0c46 /src
parentf3c2afb77f8b1f2591337fcaa90ba0fb45365cbc (diff)
updated for version 7.4.649v7.4.649
Problem: Compiler complains about ignoring return value of fwrite(). (Michael Jarvis) Solution: Add (void).
Diffstat (limited to 'src')
-rw-r--r--src/misc2.c2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/misc2.c b/src/misc2.c
index 8f19578df6..acb04b6160 100644
--- a/src/misc2.c
+++ b/src/misc2.c
@@ -6286,7 +6286,7 @@ put_time(fd, the_time)
char_u buf[8];
time_to_bytes(the_time, buf);
- fwrite(buf, (size_t)8, (size_t)1, fd);
+ (void)fwrite(buf, (size_t)8, (size_t)1, fd);
}
/*
diff --git a/src/version.c b/src/version.c
index ac5f6770de..439745612a 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 649,
+/**/
648,
/**/
647,