aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2014-02-01 14:17:06 +0100
committerLorenz Meier <lm@inf.ethz.ch>2014-02-01 14:17:06 +0100
commit713f35e04edc7f79f069ced23023345177fe6794 (patch)
treea0b169e0d7f016f16c9f74326c4c3113633c30e6
parentc1d1d6753410445ff4f16a988325cca1b7561a4c (diff)
parent028aa918bc3ccd87afd967daf663a9c12d14258d (diff)
downloadpx4-firmware-713f35e04edc7f79f069ced23023345177fe6794.tar.gz
px4-firmware-713f35e04edc7f79f069ced23023345177fe6794.tar.bz2
px4-firmware-713f35e04edc7f79f069ced23023345177fe6794.zip
Merge branch 'master' of github.com:PX4/Firmware into rc_mapping
-rw-r--r--src/systemcmds/param/param.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemcmds/param/param.c b/src/systemcmds/param/param.c
index 580fdc62f..0cbba0a37 100644
--- a/src/systemcmds/param/param.c
+++ b/src/systemcmds/param/param.c
@@ -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);
}