Merge branch 'master' of github.com:PX4/Firmware into rc_mapping

This commit is contained in:
Lorenz Meier 2014-02-01 14:17:06 +01:00
commit 713f35e04e
1 changed files with 1 additions and 1 deletions

View File

@ -320,7 +320,7 @@ do_set(const char* name, const char* val)
char* end;
f = strtod(val,&end);
param_set(param, &f);
printf(" -> new: %f\n", f);
printf(" -> new: %4.4f\n", (double)f);
}