From 60df0472219890f40e568a54ccd476d864f8ffcf Mon Sep 17 00:00:00 2001 From: MarkRivers Date: Tue, 5 Apr 2011 22:47:34 +0000 Subject: [PATCH] Use size_t not int for number of points --- motorApp/NewportSrc/XPSAxis.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/motorApp/NewportSrc/XPSAxis.h b/motorApp/NewportSrc/XPSAxis.h index b5658244..b607d233 100644 --- a/motorApp/NewportSrc/XPSAxis.h +++ b/motorApp/NewportSrc/XPSAxis.h @@ -41,7 +41,7 @@ class XPSAxis : public asynMotorAxis asynStatus poll(int *moving); asynStatus setPosition(double position); - virtual asynStatus defineProfile(double *positions, int numPoints); + virtual asynStatus defineProfile(double *positions, size_t numPoints); private: XPSController *pC_;