Changeset 8669 for trunk/psModules/src/camera/pmFPAfileFitsIO.c
- Timestamp:
- Aug 29, 2006, 11:39:44 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/camera/pmFPAfileFitsIO.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmFPAfileFitsIO.c
r7726 r8669 30 30 31 31 if (view->chip >= fpa->chips->n) { 32 psError(PS_ERR_IO, true, "Requested chip == %d >= fpa->chips->n == % d", view->chip, fpa->chips->n);32 psError(PS_ERR_IO, true, "Requested chip == %d >= fpa->chips->n == %ld", view->chip, fpa->chips->n); 33 33 return false; 34 34 } … … 41 41 42 42 if (view->cell >= chip->cells->n) { 43 psError(PS_ERR_IO, true, "Requested cell == %d >= chip->cells->n == % d", view->cell, chip->cells->n);43 psError(PS_ERR_IO, true, "Requested cell == %d >= chip->cells->n == %ld", view->cell, chip->cells->n); 44 44 return false; 45 45 } … … 93 93 94 94 if (view->chip >= fpa->chips->n) { 95 psError(PS_ERR_IO, true, "Requested chip == %d >= fpa->chips->n == % d", view->chip, fpa->chips->n);95 psError(PS_ERR_IO, true, "Requested chip == %d >= fpa->chips->n == %ld", view->chip, fpa->chips->n); 96 96 return false; 97 97 } … … 104 104 105 105 if (view->cell >= chip->cells->n) { 106 psError(PS_ERR_IO, true, "Requested cell == %d >= chip->cells->n == % d", view->cell, chip->cells->n);106 psError(PS_ERR_IO, true, "Requested cell == %d >= chip->cells->n == %ld", view->cell, chip->cells->n); 107 107 return false; 108 108 } … … 178 178 179 179 if (view->chip >= fpa->chips->n) { 180 psError(PS_ERR_IO, true, "Requested chip == %d >= fpa->chips->n == % d", view->chip, fpa->chips->n);180 psError(PS_ERR_IO, true, "Requested chip == %d >= fpa->chips->n == %ld", view->chip, fpa->chips->n); 181 181 return false; 182 182 } … … 190 190 191 191 if (view->cell >= chip->cells->n) { 192 psError(PS_ERR_IO, true, "Requested cell == %d >= chip->cells->n == % d", view->cell, chip->cells->n);192 psError(PS_ERR_IO, true, "Requested cell == %d >= chip->cells->n == %ld", view->cell, chip->cells->n); 193 193 return false; 194 194 }
Note:
See TracChangeset
for help on using the changeset viewer.
