fix use of uninitialized variable in client_test

This commit is contained in:
Arvid Norberg 2010-12-24 01:54:20 +00:00
parent 18228d6615
commit 8be38c41d7
1 changed files with 1 additions and 1 deletions

View File

@ -1148,7 +1148,7 @@ int main(int argc, char* argv[])
while (loop_limit > 1 || loop_limit == 0)
{
if (loop_limit > 1) --loop_limit;
char c;
char c = 0;
while (sleep_and_input(&c, refresh_delay))
{
if (c == 27)