Changeset 8669 for trunk/psModules/src/detrend/pmFringeStats.c
- Timestamp:
- Aug 29, 2006, 11:39:44 AM (20 years ago)
- File:
-
- 1 edited
-
trunk/psModules/src/detrend/pmFringeStats.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psModules/src/detrend/pmFringeStats.c
r8246 r8669 3 3 * @author Eugene Magnier, IfA 4 4 * 5 * @version $Revision: 1.1 6$ $Name: not supported by cvs2svn $6 * @date $Date: 2006-08- 09 02:37:07$5 * @version $Revision: 1.17 $ $Name: not supported by cvs2svn $ 6 * @date $Date: 2006-08-29 21:39:44 $ 7 7 * 8 8 * Copyright 2004 IfA … … 115 115 PS_ASSERT_VECTOR_TYPE(x, PS_TYPE_F32, false); 116 116 PS_ASSERT_VECTOR_TYPE(y, PS_TYPE_F32, false); 117 PS_ASSERT_VECTOR_SIZE(x, numRows, false);118 PS_ASSERT_VECTOR_SIZE(y, numRows, false);117 PS_ASSERT_VECTOR_SIZE(x, (long)numRows, false); 118 PS_ASSERT_VECTOR_SIZE(y, (long)numRows, false); 119 119 if (mask) { 120 120 PS_ASSERT_VECTOR_NON_NULL(mask, false); 121 121 PS_ASSERT_VECTOR_TYPE(mask, PS_TYPE_U8, false); 122 PS_ASSERT_VECTOR_SIZE(mask, numRows, false);122 PS_ASSERT_VECTOR_SIZE(mask, (long)numRows, false); 123 123 } 124 124 … … 356 356 PS_ASSERT_VECTOR_TYPE(f, PS_TYPE_F32, false); 357 357 PS_ASSERT_VECTOR_TYPE(df, PS_TYPE_F32, false); 358 PS_ASSERT_VECTOR_SIZE(f, numRows, false);359 PS_ASSERT_VECTOR_SIZE(df, numRows, false);358 PS_ASSERT_VECTOR_SIZE(f, (long)numRows, false); 359 PS_ASSERT_VECTOR_SIZE(df, (long)numRows, false); 360 360 361 361 // We need to write: … … 388 388 PS_ASSERT_INT_POSITIVE(regions->nRequested, NULL); 389 389 PS_ASSERT_VECTORS_SIZE_EQUAL(regions->x, regions->y, NULL); 390 PS_ASSERT_VECTOR_SIZE(regions->x, regions->nRequested, NULL);390 PS_ASSERT_VECTOR_SIZE(regions->x, (long)regions->nRequested, NULL); 391 391 392 392 if (extname && strlen(extname) > 0) {
Note:
See TracChangeset
for help on using the changeset viewer.
