Changeset 8627 for trunk/psLib/src/math/psUnaryOp.c
- Timestamp:
- Aug 25, 2006, 6:34:28 PM (20 years ago)
- File:
-
- 1 edited
-
trunk/psLib/src/math/psUnaryOp.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/math/psUnaryOp.c
r8232 r8627 30 30 * @author Robert DeSonia, MHPCC 31 31 * 32 * @version $Revision: 1. 9$ $Name: not supported by cvs2svn $33 * @date $Date: 2006-08- 08 23:32:23$32 * @version $Revision: 1.10 $ $Name: not supported by cvs2svn $ 33 * @date $Date: 2006-08-26 04:34:28 $ 34 34 * 35 35 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 78 78 long nOut = ((psVector*)OUT)->n; \ 79 79 if (nIn != nOut) { \ 80 psError(PS_ERR_BAD_PARAMETER_SIZE, true, _("Number of elements inconsistent, % d vs %d. Number of elements must match."), nIn, nOut); \80 psError(PS_ERR_BAD_PARAMETER_SIZE, true, _("Number of elements inconsistent, %ld vs %ld. Number of elements must match."), nIn, nOut); \ 81 81 if (OUT != IN) { \ 82 82 psFree(OUT); \ … … 99 99 long numColsOut = ((psImage*)OUT)->numCols; \ 100 100 if(numRowsIn!=numRowsOut || numColsIn!=numColsOut) { \ 101 psError(PS_ERR_BAD_PARAMETER_SIZE, true, _("Specified psImage dimensions differed, % dx%d vs %dx%d."), \101 psError(PS_ERR_BAD_PARAMETER_SIZE, true, _("Specified psImage dimensions differed, %ldx%ld vs %ldx%ld."), \ 102 102 numColsIn, numRowsIn, numColsOut, numRowsOut); \ 103 103 if (OUT != IN) { \
Note:
See TracChangeset
for help on using the changeset viewer.
