Changeset 18078
- Timestamp:
- Jun 10, 2008, 5:23:16 PM (18 years ago)
- Location:
- trunk/Ohana/src/opihi
- Files:
-
- 3 edited
-
lib.shell/evaluate_stack.c (modified) (1 diff)
-
lib.shell/stack_math.c (modified) (10 diffs)
-
pantasks/ipptool2book.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Ohana/src/opihi/lib.shell/evaluate_stack.c
r16890 r18078 13 13 14 14 int i, j, Nvar, Nout, status; 15 char line[512]; 15 char line[512]; // this is only used to report an error 16 16 StackVar tmp_stack; 17 17 Nout = Nvar = 0; -
trunk/Ohana/src/opihi/lib.shell/stack_math.c
r15878 r18078 10 10 int i, Nx; 11 11 float *out, *M1, *M2; 12 char line[512]; 12 char line[512]; // this is only used to report an error 13 13 14 14 Nx = V1[0].vector[0].Nelements; … … 140 140 int i, Nx; 141 141 float *out, *M1, *M2; 142 char line[512]; 142 char line[512]; // this is only used to report an error 143 143 144 144 Nx = V2[0].vector[0].Nelements; … … 258 258 int i, Nx; 259 259 float *out, *M1, *M2; 260 char line[512]; 260 char line[512]; // this is only used to report an error 261 261 262 262 Nx = V1[0].vector[0].Nelements; … … 377 377 int i, j, Nx, Ny; 378 378 float *out, *M1, *M2; 379 char line[512]; 379 char line[512]; // this is only used to report an error 380 380 381 381 Nx = V1[0].buffer[0].matrix.Naxis[0]; … … 547 547 int i, j, Nx, Ny; 548 548 float *out, *M1, *M2; 549 char line[512]; 549 char line[512]; // this is only used to report an error 550 550 551 551 Nx = V2[0].buffer[0].matrix.Naxis[0]; … … 733 733 int i, Nx, Ny; 734 734 float *out, *M1, *M2; 735 char line[512]; 735 char line[512]; // this is only used to report an error 736 736 737 737 Nx = V1[0].buffer[0].matrix.Naxis[0]; … … 865 865 int i, Nx, Ny; 866 866 float *out, *M1, *M2; 867 char line[512]; 867 char line[512]; // this is only used to report an error 868 868 869 869 Nx = V1[0].buffer[0].matrix.Naxis[0]; … … 984 984 int i, Nx, Ny; 985 985 float *out, *M1, *M2; 986 char line[512]; 986 char line[512]; // this is only used to report an error 987 987 988 988 Nx = V2[0].buffer[0].matrix.Naxis[0]; … … 1101 1101 1102 1102 float *M1, *M2, *out; 1103 char line[512]; 1103 char line[512]; // this is only used to report an error 1104 1104 1105 1105 M1 = V1[0].ptr; … … 1185 1185 1186 1186 int value; 1187 char line[512]; 1187 char line[512]; // this is only used to report an error 1188 1188 1189 1189 /* only 'N' and 'E' are allowed for WW_binary operations. anything else is either a -
trunk/Ohana/src/opihi/pantasks/ipptool2book.c
r16810 r18078 11 11 int i, N, onPage, found, Unique, Nkeys, NKEYS; 12 12 char *line, *tmpword, *tmpvalue; 13 char pagename[512], *bookName, **keys, *p, *q; 13 char pagename[512]; // XXX this should be made dynamic, though it is an unlikey problem 14 char *bookName, **keys, *p, *q; 14 15 char **setWordList; 15 16 char **setWordValue;
Note:
See TracChangeset
for help on using the changeset viewer.
