--- src/usr.bin/make/buf.h 2005/01/24 05:13:58 1.19 +++ src/usr.bin/make/buf.h 2005/01/24 06:43:00 1.20 @@ -69,9 +69,9 @@ typedef char Byte; typedef struct Buffer { - size_t size; /* Current size of the buffer */ - Byte *buffer; /* The buffer itself */ - Byte *inPtr; /* Place to write to */ + size_t size; /* Current size of the buffer */ + Byte *buf; /* The buffer itself */ + Byte *end; /* Place to write to */ } Buffer; void Buf_AddByte(Buffer *, Byte);