diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-03-05 13:36:00 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-03-05 13:36:00 +0100 |
commit | cf48767cd17130958a3076eed1872b6950947a0a (patch) | |
tree | 3d00f129961e7193884854fb49b6a3ea6a0a0c46 /src/misc2.c | |
parent | f3c2afb77f8b1f2591337fcaa90ba0fb45365cbc (diff) | |
download | vim-git-cf48767cd17130958a3076eed1872b6950947a0a.tar.gz |
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/misc2.c')
-rw-r--r-- | src/misc2.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } /* |