Changeset 15096 for trunk/psModules/src/camera/pmFPAview.c
- Timestamp:
- Sep 28, 2007, 3:26:55 PM (19 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/camera/pmFPAview.c (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/camera/pmFPAview.c
r15093 r15096 3 3 * @author EAM, IfA 4 4 * 5 * @version $Revision: 1.1 2$ $Name: not supported by cvs2svn $6 * @date $Date: 2007-09-29 01: 19:47$5 * @version $Revision: 1.13 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2007-09-29 01:26:55 $ 7 7 * 8 8 * Copyright 2004 Maui High Performance Computing Center, University of Hawaii … … 323 323 324 324 pmFPAview *pmFPAviewGenerate(const pmFPA *fpa, const pmChip *chip, const pmCell *cell, 325 const pmReadout *rea odut)325 const pmReadout *readout) 326 326 { 327 327 PS_ASSERT_PTR_NON_NULL(fpa, NULL); … … 335 335 for (view->chip = 0; view->chip < fpa->chips->n && fpa->chips->data[view->chip] != chip; view->chip++); 336 336 if (view->chip == fpa->chips->n) { 337 psError(PS_ERR_UNKNOWN, true, "Unable to find chip % xin fpa.", chip);337 psError(PS_ERR_UNKNOWN, true, "Unable to find chip %p in fpa.", chip); 338 338 psFree(view); 339 339 return NULL; … … 346 346 for (view->cell = 0; view->cell < chip->cells->n && chip->cells->data[view->cell] != cell; view->cell++); 347 347 if (view->cell == chip->cells->n) { 348 psError(PS_ERR_UNKNOWN, true, "Unable to find cell % xin chip.", cell);348 psError(PS_ERR_UNKNOWN, true, "Unable to find cell %p in chip.", cell); 349 349 psFree(view); 350 350 return NULL; … … 359 359 view->readout++); 360 360 if (view->readout == cell->readouts->n) { 361 psError(PS_ERR_UNKNOWN, true, "Unable to find readout % xin cell.", readout);361 psError(PS_ERR_UNKNOWN, true, "Unable to find readout %p in cell.", readout); 362 362 psFree(view); 363 363 return NULL;
Note:
See TracChangeset
for help on using the changeset viewer.
