Changeset 40169
- Timestamp:
- Oct 16, 2017, 6:09:08 AM (9 years ago)
- Location:
- branches/eam_branches/ohana.20170822/src/opihi
- Files:
-
- 2 edited
-
cmd.data/print_vectors.c (modified) (1 diff)
-
lib.shell/parse.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eam_branches/ohana.20170822/src/opihi/cmd.data/print_vectors.c
r40168 r40169 35 35 gprint (GP_LOG, "%f ", vec[i][0].elements.Flt[j]); 36 36 } else { 37 gprint (GP_LOG, OPIHI_INT_FMT , vec[i][0].elements.Int[j]);37 gprint (GP_LOG, OPIHI_INT_FMT" ", vec[i][0].elements.Int[j]); 38 38 } 39 39 } -
branches/eam_branches/ohana.20170822/src/opihi/lib.shell/parse.c
r33662 r40169 245 245 vec[0].elements.Flt[Nx] = atof (val); 246 246 } else { 247 vec[0].elements.Int[Nx] = atol (val);247 vec[0].elements.Int[Nx] = atoll (val); 248 248 } 249 249 }
Note:
See TracChangeset
for help on using the changeset viewer.
