mirror of
https://github.com/macvim-dev/macvim.git
synced 2026-06-11 15:37:29 +02:00
updated for version 7.4.649 Problem: Compiler complains about ignoring return value of fwrite(). (Michael Jarvis) Solution: Add (void).
This commit is contained in:
committed by
Douglas Drumond
parent
16fe16b1cb
commit
aee05280be
+1
-1
@@ -6292,7 +6292,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);
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@@ -756,6 +756,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
649,
|
||||
/**/
|
||||
648,
|
||||
/**/
|
||||
|
||||
Reference in New Issue
Block a user