Changeset 41340 for trunk/Ohana/src/opihi/lib.shell/parse.c
- Timestamp:
- Apr 16, 2020, 1:54:47 PM (6 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/opihi/lib.shell/parse.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/lib.shell/parse.c
r41176 r41340 66 66 /* dvomath returns a new string, or NULL, with the result of the expression */ 67 67 val = dvomath (1, &V1, &size, 0); 68 if (val == NULL) { print_error (); goto error; }68 if (val == NULL) goto error; 69 69 fval += atof(val); 70 70 // save the result … … 88 88 /* dvomath returns a new string, or NULL, with the result of the expression */ 89 89 val = dvomath (1, &V1, &size, 0); 90 if (val == NULL) { print_error (); goto error; }90 if (val == NULL) goto error; 91 91 fval -= atof(val); 92 92 // save the result
Note:
See TracChangeset
for help on using the changeset viewer.
