Changed prototype for console_write_support to eliminate a warning.

This commit is contained in:
Joel Sherrill
1998-06-29 17:51:50 +00:00
parent cf65c40819
commit dc95ee8dce

View File

@@ -91,7 +91,11 @@ void DEBUG_puts(
*
*/
int console_write_support (int minor, const void *bufarg, int len)
int console_write_support (
int minor,
const char *bufarg,
int len
)
{
int nwrite = 0;
const char *buf = bufarg;