mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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:
parent
756985ab45
commit
554ce32897
1 changed files with 1 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ int cursor = SP->_cursor;
|
|||
|
||||
int delay_output(int ms)
|
||||
{
|
||||
int speed;
|
||||
int speed = 0;
|
||||
|
||||
T(("delay_output(%d) called", ms));
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue