bugfix in com_meas()
This commit is contained in:
parent
57097463ee
commit
8cee489660
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue