Fixed prototype conflict.
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@535 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -124,9 +124,9 @@ TerminalWrite(char *buf, int n)
|
||||
}
|
||||
|
||||
int
|
||||
TerminalRead(char *buf, int n)
|
||||
TerminalRead(unsigned char *buf, int n)
|
||||
{
|
||||
return read(tin, buf, n);
|
||||
return read(tin, (char*)buf, n);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user