From: Bram Moolenaar Date: Thu, 5 Mar 2015 12:36:00 +0000 (+0100) Subject: updated for version 7.4.649 X-Git-Tag: v7.4.649 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cf48767cd17130958a3076eed1872b6950947a0a;p=vim updated for version 7.4.649 Problem: Compiler complains about ignoring return value of fwrite(). (Michael Jarvis) Solution: Add (void). --- diff --git a/src/misc2.c b/src/misc2.c index 8f19578df..acb04b616 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 ac5f6770d..439745612 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 649, /**/ 648, /**/