From 988cb873711d644068a88f072b841a04a25759e4 Mon Sep 17 00:00:00 2001 From: Douglas Clowes Date: Fri, 21 Mar 2014 11:49:27 +1100 Subject: [PATCH] Fix typo --- site_ansto/motor_dmc2280.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/site_ansto/motor_dmc2280.c b/site_ansto/motor_dmc2280.c index b7d732a2..0b505f41 100644 --- a/site_ansto/motor_dmc2280.c +++ b/site_ansto/motor_dmc2280.c @@ -4350,7 +4350,7 @@ static int DMC2280GetPar(void *pData, char *name, return 1; } if(strcasecmp(name,"motorhome") == 0) { - *fValue = self->motorhome; + *fValue = self->motorHome; return 1; } if (self->posit_count > 0) { @@ -4795,7 +4795,7 @@ static int DMC2280SetPar(void *pData, SConnection *pCon, snprintf(pError, ERRLEN,"WARNING:'%s %s' is greater than the upper limit %f", self->name, HOME, self->fUpper); SCWrite(pCon, pError, eWarning); } - self->motorhome = newValue; + self->motorHome = newValue; return 1; } }