- fixed buggy assignment statements (== replaced by =)

This commit is contained in:
zolliker
2009-02-27 08:00:04 +00:00
parent 5af2dd819d
commit 664bc91ac7
5 changed files with 7 additions and 10 deletions

View File

@ -159,7 +159,7 @@ static void interpretLine(pSICSOBJ self, pLMD200 priv)
case WAITDATA1:
if (strstr(priv->lineBuffer, "...0") == NULL) {
/* this data is out of order, recover... */
priv->state == IDLE;
priv->state = IDLE;
return;
}
storeData(self, 0, priv->lineBuffer);
@ -168,7 +168,7 @@ static void interpretLine(pSICSOBJ self, pLMD200 priv)
case WAITDATA2:
if (strstr(priv->lineBuffer, "...0") == NULL) {
/* this data is out of order, recover... */
priv->state == IDLE;
priv->state = IDLE;
return;
}
storeData(self, 8, priv->lineBuffer);