Small fixes

This commit is contained in:
Chris Teubert
2015-04-08 09:12:45 -07:00
parent d18904bbe2
commit 10bf4d63ac
3 changed files with 3 additions and 3 deletions

View File

@@ -380,7 +380,7 @@ int printBufferToLog(struct XPCMessage & msg)
{// Header = CTRL (Control)
xpcCtrl ctrl = parseCTRL(msg.msg);
sprintf(logmsg,"%s (%f %f %f) %f %hi %f",logmsg, ctrl.pitch, ctrl.roll, ctrl.yaw, ctrl.throttle, ctrl.gear, ctrl.flaps);
sprintf(logmsg,"%s (%f %f %f) %f %hhi %f",logmsg, ctrl.pitch, ctrl.roll, ctrl.yaw, ctrl.throttle, ctrl.gear, ctrl.flaps);
updateLog(logmsg,strlen(logmsg));