Fixing some compile warnings in C++

--HG--
extra : source : 84601b0b128cb508e13a1ae23fd648acc52990c8
This commit is contained in:
Patrick Plenefisch
2014-05-02 17:52:49 -04:00
parent 1c943ff6f0
commit 848a043f99
9 changed files with 11 additions and 23 deletions

View File

@@ -100,7 +100,7 @@ bool SafePWM::IsSafetyEnabled()
void SafePWM::GetDescription(char *desc)
{
sprintf(desc, "PWM %ld on module %ld", GetChannel(), GetModuleNumber());
sprintf(desc, "PWM %d on module %d", GetChannel(), GetModuleNumber());
}
/**