Changeset 13539
- Timestamp:
- May 30, 2007, 12:11:12 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/Ohana/src/opihi/dvo/avextract.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/dvo/avextract.c
r13479 r13539 6 6 int Nsecfilt, mode; 7 7 char *RegionName, *RegionList, *p; 8 char **cstack ;8 char **cstack, name[1024]; 9 9 float *values; 10 10 … … 56 56 ALLOCATE (vec, Vector *, Nreturn); 57 57 for (i = 0; i < Nreturn; i++) { 58 if ((vec[i] = SelectVector (fields[i].name, ANYVECTOR, TRUE)) == NULL) goto escape; 58 if (ISNUM(fields[i].name[0])) { 59 sprintf (name, "v_%s", fields[i].name); 60 } else { 61 sprintf (name, "%s", fields[i].name); 62 } 63 if ((vec[i] = SelectVector (name, ANYVECTOR, TRUE)) == NULL) goto escape; 59 64 } 60 65
Note:
See TracChangeset
for help on using the changeset viewer.
