Compile in the case that anyone ever actually uses LEAVE_FREE_CHARS.

It's not clear what this does nor why they would do it, but it should
compile, now.  This could be a case where fixing the code so that it
compiles merely masks more devious dysfunctional behaviour.
This commit is contained in:
Tim Vanderhoek 2000-05-21 05:40:44 +00:00
parent caa3136039
commit 4f91f96d90
2 changed files with 2 additions and 2 deletions

View File

@ -2028,7 +2028,7 @@ dgbstart(tp)
size=tail-head-LEAVE_FREE_CHARS;
if (size <0)
size=0;
} else {
else {
size=port->txbufsize-head;
if(tail+port->txbufsize < head)
size=0;

View File

@ -2028,7 +2028,7 @@ dgbstart(tp)
size=tail-head-LEAVE_FREE_CHARS;
if (size <0)
size=0;
} else {
else {
size=port->txbufsize-head;
if(tail+port->txbufsize < head)
size=0;