[comp.bugs.4bsd] Blunder in gmon.c

adam@gec-mi-at.co.uk (Adam Quantrill) (08/24/87)

Hardly needs a diff. The current version bungs out a null when the 'tos over-
flow' message is printed:

/usr/src/lib/libc/vax/csu/gmon.c

240	#   define	TOLIMIT	"mcount: tos overflow\n"
241		write(2, TOLIMIT, sizeof(TOLIMIT));

Should be:

241		write(2, TOLIMIT, sizeof(TOLIMIT)-1);