Avoid an uninitialised variable warning from gcc. I bet some people

don't like me doing this, but I want to see clean compiles. 8-)
This commit is contained in:
John Birrell 1998-02-20 07:40:22 +00:00
parent 756985ab45
commit 554ce32897

View File

@ -113,7 +113,7 @@ int cursor = SP->_cursor;
int delay_output(int ms)
{
int speed;
int speed = 0;
T(("delay_output(%d) called", ms));