Fixed multiplier issue

This commit is contained in:
Ziver Koc 2016-06-10 21:50:59 +02:00
parent 26c909ac8d
commit d04706f9d1
3 changed files with 6 additions and 8 deletions

View file

@ -90,7 +90,7 @@ void Interrupt::handleWatchDogInterrupt()
wdt_disable();
if (wdtTime <= 0)
return;
DEBUGF("WDT interrupt, time=%d, timeLeft=%d", wdtTime, wdtTimeLeft);
DEBUGF("WDT interrupt, time=%u, timeLeft=%ld", wdtTime, wdtTimeLeft);
if (wdtTimeLeft <= 0)
{