1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-23 23:36:27 -07:00

Suppress warnings about uninitialized use of eof.

Copied from Perforce
 Change: 182750
 ServerID: perforce.ravenbrook.com
This commit is contained in:
Richard Brooksby 2013-06-15 14:38:00 +01:00
parent dc3fe5546b
commit 1ea9ffdac4

View file

@ -226,7 +226,7 @@ static void readLog(FILE *stream)
Event event = &eventUnion;
EventCode code;
Res res;
Bool eof;
Bool eof = FALSE; /* suppress warnings about uninitialized use */
/* Read and parse event. */
res = eventRead(&eof, event, stream);