| # | Line 373 | Line 373 | setheadvar(char *val, void *p) | |
|---|---|---|
| 373 | tep->key = strcpy(malloc(kln+1), key); | |
| 374 | if (tep->data) { /* check for special cases */ | |
| 375 | if (!strcmp(key, "EXPOSURE")) { | |
| 376 | < | sprintf(newval, "%f", atof(tep->data)*atof(val)); |
| 376 | > | sprintf(newval, "%.6e", atof(tep->data)*atof(val)); |
| 377 | vln = strlen(val = newval); | |
| 378 | } | |
| 379 | free(tep->data); | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines |
| > | Changed lines |