"possibly uninitialized" i don't now how fix help!!

i am following this tutorial http://www.youtube.com/watch?v=6TsDdLY7VXk when some changes that i do. and the most important to my was learn “timers”.
all was fine until he set this little code
and my simulator did’t do what in the tutorial happen ( i am very newbie).
i downloaded the trial of LuaGlider,and says the "possibly uninitialized " i don’t now what it is and more important how fixed if you can tell how fixed y appreciate very much(sorry for the bad english i am from venezuela)

[code]
if(o == 0) then
audio.play(win_sound);
timer.cancel(gametmr);
end
end

[import]uid: 179948 topic_id: 31619 reply_id: 331619[/import]

Hope this helps.

First create the timer and then you can cancel / pause / resume it.

local myTimer = timer.performWithDelay( 1000, myFunction )  

Then later:

timer.pause(myTimer)  

Read the documentation with included examples @ http://docs.coronalabs.com/api/library/timer/index.html [import]uid: 177091 topic_id: 31619 reply_id: 126291[/import]

Hope this helps.

First create the timer and then you can cancel / pause / resume it.

local myTimer = timer.performWithDelay( 1000, myFunction )  

Then later:

timer.pause(myTimer)  

Read the documentation with included examples @ http://docs.coronalabs.com/api/library/timer/index.html [import]uid: 177091 topic_id: 31619 reply_id: 126291[/import]