Fixed test stmnt errors in previous commit.

This commit is contained in:
Janet B. Anderson
2000-02-02 22:25:27 +00:00
parent af081e0786
commit 137ac31a23

View File

@@ -446,7 +446,7 @@ long epicsShareAPI postfix(char *pinfix,char *ppostfix,short *perror)
/* add operators of higher or equal priority to */
/* postfix notation */
while ((pstacktop >= stack+1) &&
(pstacktop->in_stack_pri >= pelement->in_coming_pri)) {
(pstacktop->in_stack_pri >= in_coming_pri)) {
*ppostfix++ = pstacktop->code;
pstacktop--;
}
@@ -506,7 +506,7 @@ long epicsShareAPI postfix(char *pinfix,char *ppostfix,short *perror)
/* add operators of higher priority to */
/* postfix notation */
while ((pstacktop >= stack+1) &&
(pstacktop->in_stack_pri >= pelement->in_coming_pri)) {
(pstacktop->in_stack_pri > pelement->in_coming_pri)) {
*ppostfix++ = pstacktop->code;
pstacktop--;
}