[net.bugs.usg] A few minor bug fixes for curses

edward@ukecc.UUCP (Edward C. Bennett) (09/04/85)

Here are there minor bug fixes for SysVR2.2 curses.
I didn't bother with diffs because they are so minor.

/*	@(#) mvscanw.c: 1.1 10/15/83	(1.3	6/25/82)	*/

change
	return move(y, x) == OK ? _sscans(stdscr, fmt, &args) : ERR;
to
	return move(y, x) == OK ? __sscans(stdscr, fmt, &args) : ERR;



/*	@(#) mvwscanw.c: 1.1 10/15/83	(1.3	6/25/82)	*/

change
	return wmove(win, y, x) == OK ? _sscans(win, fmt, &args) : ERR;
to
	return wmove(win, y, x) == OK ? __sscans(win, fmt, &args) : ERR;



/*	@(#) vsscanf.c: 1.1 10/15/83	(1.1)	*/

change
	junk._base = junk._ptr = buf;
to
	junk._base = junk._ptr = (unsigned char *)buf;


-- 
Edward C. Bennett

UUCP: ihnp4!cbosgd!ukma!ukecc!edward

/* A charter member of the Scooter bunch */