This commit is contained in:
Douglas Clowes
2014-03-21 11:49:27 +11:00
parent acf9d75941
commit 988cb87371

View File

@@ -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;
}
}