| To: vim_dev@googlegroups.com |
| Subject: Patch 7.4.649 |
| Fcc: outbox |
| From: Bram Moolenaar <Bram@moolenaar.net> |
| Mime-Version: 1.0 |
| Content-Type: text/plain; charset=UTF-8 |
| Content-Transfer-Encoding: 8bit |
| |
| |
| Patch 7.4.649 |
| Problem: Compiler complains about ignoring return value of fwrite(). |
| (Michael Jarvis) |
| Solution: Add (void). |
| Files: src/misc2.c |
| |
| |
| |
| |
| |
| *** 6286,6292 **** |
| char_u buf[8]; |
| |
| time_to_bytes(the_time, buf); |
| ! fwrite(buf, (size_t)8, (size_t)1, fd); |
| } |
| |
| /* |
| --- 6286,6292 ---- |
| char_u buf[8]; |
| |
| time_to_bytes(the_time, buf); |
| ! (void)fwrite(buf, (size_t)8, (size_t)1, fd); |
| } |
| |
| /* |
| |
| |
| |
| *** 743,744 **** |
| --- 743,746 ---- |
| { /* Add new patch number below this line */ |
| + /**/ |
| + 649, |
| /**/ |
| |
| -- |
| An extraordinary TALL KNIGHT in all black (possibly John with Mike on his |
| shoulders) walks out from the dark trees. He is extremely fierce and |
| gruesome countenance. He walks towards KING ARTHUR and PATSY, who are |
| wazzing like mad. (Salopian slang, meaning very scared. almost to the |
| point of wetting oneself, e.g. before an important football match or |
| prior to a postering. Salopian slang meaning a beating by the school |
| praeposters. Sorry about the Salopian slant to this stage direction - Ed.) |
| "Monty Python and the Holy Grail" PYTHON (MONTY) PICTURES LTD |
| |
| /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ |
| /// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ |
| \\\ an exciting new programming language -- http://www.Zimbu.org /// |
| \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |