bugfix in com_meas()

This commit is contained in:
h_vogt 2009-12-22 15:03:58 +00:00
parent 57097463ee
commit 8cee489660
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2009-12-22 Holger Vogt
* measure.c: bugfix (%f replaced by %e)
2009-12-21 Holger Vogt
* com_measure2.com, measure.c: add vectors to the meas command.
inpcom.c: no parsing of ternary function in .control section (not

View File

@ -115,7 +115,7 @@ com_meas(wordlist *wl) {
return;
}
sprintf(newvec, "%s = %f\0", outvar, result);
sprintf(newvec, "%s = %e\0", outvar, result);
wl_let = alloc(struct wordlist);
wl_let->wl_next = NULL;
wl_let->wl_word = copy(newvec);